Soap Server is failing when request is chunked

I am trying to make a Soap Server which will be consumed by a third party company who sends real-time data as a push service and expects that my server stores the data or does something with it.

Everything seemed correct until I’ve realized the server responds with a 500 HTTP status code when there’s the header Transfer-Encoding: chunked instead of Content-Length: X.

Does anyone know why the server is only failing when this header is present? I’ve tested sending the request without the header and it works fine, but the problem is the third party company will send this header.

Edit: I’m using HTTP1.1 protocol, but I’ve never faced this problem making Soap Servers

Add Comment
0 Answer(s)

Your Answer

By posting your answer, you agree to the privacy policy and terms of service.