cancel
Showing results for 
Search instead for 
Did you mean: 

What functions does adapter framework provide?

Former Member
0 Kudos

HI,

Can you please send me info about for above question and also ..Please don't send me any Blogs.

Regd's

Raj

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Raj,

The Adapter Framework uses the adapter monitor interfaces to display the status of the adapter, its channels, and its subcomponents to system administrators.

As of XI 3.0 SP17 and SAP NetWeaver 2004s SP8, the adapter monitor is replaced by the communication channel monitor. However, the API and the user interfaces of the adapter monitor are still available to ensure that you can still run and monitor older adapter solutions. However, since the communication channel monitor has more functions (starting and stopping channels, alerting), we recommend an upgrade.

You can call the adapter monitor at //localhost:50000/AdapterFramework/monitor/monitor.jsp. The JavaServer Pages application calls the interface specified here to display the adapter status data.

Features :

● To display your adapter in the adapter monitor, you must register it in the Adapter Framework. You must use the same adapter name and namespace in the registration as were used to create the adapter metadata, or the name that was used for CPA callback registration.

In the example adapter, the adapter name is JCA and the namespace is http://sap.com/xi/XI/sample.

If an adapter is stopped, it must deregister itself. You can deregister an adapter by using the MonitorManager class in com.sap.aii.af.monitor.api.

● The AdapterMonitor interface specifies the getStatus() method, which is called by the adapter monitor when the corresponding adapter entry, as known in the CPA, is selected. getStatus() returns an array with AdapterStatusData lines in an object of the AdapterStatus class. This array lists the status of the adapter, its subcomponents, and its channels.

For example, you can return a status line for each communication channel and a general status line for each adapter. Depending on the adapter architecture, additional entries are possible.

If possible, return the current status of the adapter. Some adapter types do not implement a certain object for a communication channel because they listen to a port, for example, and use address data to determine the sender agreement dynamically. In such cases, the adapter may not manage the status of the communication channel and cannot return the status. However, the adapter should return a subcomponent status.

Also take a look at ,

http://help.sap.com/saphelp_nw2004s/helpdata/en/20/4ca0404dd52b54e10000000a1550b0/frameset.htm

cheers,

Prashanth

Former Member
0 Kudos

Hi Raj,

Take a look at this note:

821268 - XI 3.0 Adapter Framework

I hope it helps....

Regards,

Abhy

bhavesh_kantilal
Active Contributor
0 Kudos

Raj,

This link should give you info on all you need to know on Adapter Framework,

http://help.sap.com/saphelp_nw04/helpdata/en/fd/16e140a786702ae10000000a155106/content.htm

Regards,

Bhavesh

STALANKI
Active Contributor
0 Kudos

Adapter framework is a JCA Compliant architecture that is the base of the XI adapters.It provides various guideline to write your JCA compliant adapters.Provides Queuing,Logging mechanisms for adapters.You have a detailed help on this in SAP Help.