cancel
Showing results for 
Search instead for 
Did you mean: 

HTTP 500 Internal Server Error IOexception PI 7.3

former_member260907
Participant
0 Kudos

Hi Expert,

We are using PI7.3. Now I have a asynchronous SOAP to IDoc scenario. When I send a soap message to PI which uses SOAP adapter, I got an error back saying "Server returned HTTP response code: 500 for URL.. IOException". I used to work in another company with PI 7.0. This scenario is very similar with my old one and I used similar codes in my java program to send SOAP message. It worked very well before. But now it does not work in PI 7.3. In my java program, I set up like this;

URL = PIHOST:port/XISOAPAdapter/MessageServlet?channel=:Business System:CCname
		        httpConn.setRequestProperty( "Content-Length",  String.valueOf( b.length ) );
		        httpConn.setRequestProperty("Content-Type","text/xml; charset=utf-8");
				  httpConn.setRequestProperty("SOAPAction",SOAPAction);
				  httpConn.setRequestProperty("Authorization", "Basic " + base64UserAndPasswd);
				
		        httpConn.setRequestMethod( "POST" );

I checked monitoring in PI . No message is coming. Can anyone tell me where is wrong? Is there any difference in SOAP adapter between PI 7.3 and PI 7.0? Where I can check more detail about the error. The log tells me the user login successfully. Thanks,

Charles

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

HI Charles,

Please check the blog, you would find all the HTTP related errors :

Thanks,

former_member260907
Participant
0 Kudos

Thank for the info.

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

The server encountered an unexpected condition which prevented it from fulfilling the request.

Have a look into SAP Notes u2013 804124, 807000

regards,

ganesh.

former_member260907
Participant
0 Kudos

Thank you very much Ganesh for the quick response. I will work with our Basis to check and follow the notes.

Charles