cancel
Showing results for 
Search instead for 
Did you mean: 

What funtion that adapter frame work will provide.?

Former Member
0 Kudos

Hello Guru's,

Can any one tell me the what funtion that adapter frame work provied.

Reg.

arjun

Accepted Solutions (1)

Accepted Solutions (1)

dharamveer_gaur2
Active Contributor
0 Kudos

Answers (2)

Answers (2)

former_member193376
Active Contributor
0 Kudos

Hi

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

Hope this is helpfull

Thanks

Saiyog

Former Member
0 Kudos

In short, Framework provides interfaces for configuration, management, and monitoring of adapters. Uses its own queuing and log service