cancel
Showing results for 
Search instead for 
Did you mean: 

HTTP Receiver adaptor and query string posting

Former Member
0 Kudos

What woudl be the configuration of HTTP receiver adaptor in this kind of situation. I added some strings to the Prologue section of the receiver adapter but does not seem to work.

http://help.sap.com/saphelp_erp2005/helpdata/en/44/79973cc73af456e10000000a114084/content.htm

I just need to ge the XML body in cmxl = {whole xml body}

does not work..any help would be highly appreciated

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Pls try this...

the value in the prologue field should be...

prologue : "field1=val1&field2=val2&cxml="

the http body is created by appending prologue with the xml payload and the epilog(if present)...

also pls make sure that the content-type set in the adapter is correct for your scenario...for example "application/x-www-form-urlencoded" would be the appropriate type for a normal html form post using http.

Thanks & Regards,

Renjith

Former Member
0 Kudos

hi thanks for the input

i tried

application/x-www-form-urlencoded

and the query string in the prologue

the adaptor failed and started sending infinite number of messages

this happened when i chaned from text/xml to application/x-www-form-urlencoded

thanks