cancel
Showing results for 
Search instead for 
Did you mean: 

Error with Proxy<->Soap sync scenario - "invalid http response:HTTP/1.1 5"

AnaLavieri
Explorer
0 Kudos

Hello,

I'm working on a PI scenario as displayed below:

Proxy <-> ECC <-> Soap

I've already imported the WSDL provided by 3th party and mapped one of the actions of the interface.

In the PI configuration I`d created the Scenario, using a Soap Receiver communication channel, passing only the URL and the action (no more options used).

When I`m trying testing using SPROXY or Runtime Workbench, the error bellow is displayed, and no receive message is created:

"com.sap.engine.interfaces.messaging.api.exception.MessagingException: java.io.IOException: invalid http response: HTTP/1.1 5"

Someone knows the error cause?

Thanks,

Ana Paula Lavieri

Accepted Solutions (0)

Answers (2)

Answers (2)

markangelo_dihiansan
Active Contributor
0 Kudos

Hello,

"com.sap.engine.interfaces.messaging.api.exception.MessagingException: java.io.IOException: invalid http response: HTTP/1.1 5"

HTTP 1.1 is not natively supported by standard SOAP or Plain HTTP Adapter, you should use SOAP Axis for that. See SAP Note 1039369 - FAQ XI Axis Adapter, under Receiver Adapter General -> 16. Can I use HTTP 1.1? Otherwise, you would have to ask the third-party to use HTTP 1.0 instead.

Hope this helps,

Mark

Ryan-Crosby
Active Contributor
0 Kudos

Hi Ana,

The response you are getting is telling you that the response you received from the 3rd party was not properly formed HTTP. To get more detail you would need to check with the 3rd party to find out what the problem is here.

Regards,

Ryan Crosby

Former Member
0 Kudos

Ana

It looks like your 3rd party is returning HTTP/1.1 500 Bad Request (or any other error starting with 5), talk to your 3rd party and ask them the return code they are returning.

And I had many SOAP or HTTP problems like that and I always use a HTTP client to make sure they are sending right response, otherwise, its very hard to find out the problem.

Regards.