cancel
Showing results for 
Search instead for 
Did you mean: 

Regarding HTTP Adapter in PI 7.3.1

0 Kudos

Hi friends,

     I am working in SAP PI 7.3.1. I am doing a HTTP to FILE scenario. I am encountering a problem while configuring the sender HTTP adapter.

1) What must be given in MAIN Payload parameter name in sender HTTP_AAE adapter?

2) Also when do we go for POST or GET methods.

3)Apart from this, in the HTTP client request, what must be given for the following parameters( Actually i am sending only one file )

     a)Main payload name

      b)Email

      c)client

I have attached an image regarding the same.

Help me to solve this issue.

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member187339
Active Contributor
0 Kudos

Hi Bhaskaran,

Do check the the help.sap link on Sender HTTP Adapter (Java)

http://help.sap.com/saphelp_nw73ehp1/helpdata/en/03/e2d70a626342feaef7f2f9f04a1776/content.htm

Now suppose your Sender HTTP URL looks like this:

http://<Server>:<port>/HttpAdapter/HttpMessageServlet?
interfaceNamespace=<interfacenamespace>&
interface=<interfacename>&
senderService=<senderservice>&
qos=<qos>&
j_username=<username>&
j_password=<password>&
message=<message>

>>1) What must be given in MAIN Payload parameter name in sender HTTP_AAE adapter?

based on the above url it should be message

>>2) Also when do we go for POST or GET methods.

please use google to learn more on these modes of HTTP

>>3)Apart from this, in the HTTP client request, what must be given for the following parameters( Actually i am sending only one file ) a)Main payload name :

message ( or anything which you want to name it to. But the variable mentioned in HTTP Sender Channel should be there in the query-string to identify the payload of the request. )

>>b)Email :

no sure what it is doing in the page, may be some functionality

>> c)client :

client of SAP PI server.

Regards

Suraj

0 Kudos

Thank you Suraj