cancel
Showing results for 
Search instead for 
Did you mean: 

Received HTTP response code 500 with acknowledgment

cdumont69
Contributor
0 Kudos

Hello,

This is my process : R/3 (Idoc) -> XI -> 3rdParty(CSV).

I use R/3 4.6C and XI 3.0 SP10

This work fine but there is a problem with the acknowledgment :

Transmitting the message to endpoint http://<server>:8000/sap/xi/engine/entry?action=execute using connection AFW failed, due to: Received HTTP response code 500..

I use this Weblog : /people/saravanakumar.kuppusamy2/blog/2005/01/20/configuration-tips-for-a-business-serviceintegration-process-to-send-back-ale-audit-idoc

and all I can find in this forum.

What can I do ?

Thanks

Regards

Message was edited by: Christophe DUMONT

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

HTTP 500 is an error caused at the Web Server side. Any http connection happens in 4 steps:

1) Obtain the IP address from the URL - provied by DNS

2) Open Ip Socket for that IP

3) Use this socket to write data

4) Receive data stream back from the server.

This data stream which is passed by the server has status codes. If there is a status code 500, this is trapped only at the last level and client is not able to resolve the status.

You would want to look at the 4 points of faliure mentioned above. And it would help if u get someone on the Web Server side to look at the server logs. These logs are more descriptive and will provide a clue to set things right.

let us know if u are able to resolve the issue.