Error Message: Connection reset
Comments
-
"Connection reset" means the socket was unexpectedly closed. The server side may do that if it encounters some issue, like if it can't process the request from the client.
I recommend comparing the exact HTTP message you are sending with SOAtest and compare that with the exact HTTP message your are sending with postman. Compare both HTTP header and HTTP body side-by-side. If you are seeing different behavior then there must be something different in the request being sent.
0 -
I am using exact same URL/Headers/Body. I copied all info from POSTMAN and pasted in SOATest.
still getting same issue.
0 -
I copied all info from POSTMAN and pasted in SOATest.
Please check first line, including HTTP version. Also, some HTTP headers must be auto-generated or may have dynamic values, like Content-Length or Authorization.
still getting same issue
You probably need to check logs on the server side. It sounds like the server couldn't process the request for some reason and decided to close the socket as opposed to returning an error message in an HTTP response. It knows the reason why it did this and may have logged something.
0