cancel
Showing results for 
Search instead for 
Did you mean: 

Task(Axis) Protocol.

vijay_b4
Active Contributor
0 Kudos

Hi,

What is the purpose of the following Protocol and when do we use it.

Thanks,Vijay

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member182412
Active Contributor
0 Kudos

Hi Vijay,

  • This protocol is calls the specified URL using the GET request and its response is sent to the SOAP sender channel
  • The scheduling parameters can be set in the channel to specify the periodic triggering of the request.
  • Check this blog for more details.
  • If you want to retrieve some data from the URL periodically you will use this protocol.

The active task is an inbound messaging component that is actively invoked

by the adapter framework’s scheduler at some specified interval. Each active task must

implement interface com.sap.aii.axis.transport.Receiver or alternatively simply extend the

com.sap.aii.axis.transport.BasicReceiver class that partially implements this interface.

When an inbound channel is configured with an active task and this channel is started, a new job

with the specified schedule is placed on the adapter framework’s scheduler. Subsequently, the

receive method of this active task is invoked by the scheduler.

HTTP Getter active task - PI Axis sender channel use HTTP Getter task to obtain payload

from remote services. The corresponding task name is

com.sap.aii.adapter.axis.ra.transport.http.HTTPGetter.

This task calls the specified URL using the GET request and its response is sent to the sender

channel. The scheduling parameters can be set in the channel to specify the periodic

triggering of the request. For the availability of this feature, refer to Note 1448849

Regards,

Praveen.

former_member186851
Active Contributor
0 Kudos

Hello Vijay,

You would use it when you wish to configure SOAP-AXIS adapter for requirements pulling data from webservice handing files in webservice.

Refer the SAP document below and note-1039369

Axis Framework in the SOAP Adapter - Advanced Adapter Engine - SAP Library

Below link has some documentation

SOAP AXIS - Process Integration - SCN Wiki

vijay_b4
Active Contributor
0 Kudos

Hi Raghu,

I saw your wiki on Axis adapter...

There are few doubts: if there is no transformation, what is the purpose of creating data type,message type, service interfaces, you would have used pass through right.

and what does enablerest task do?

Thanks,

Vijay