Hi,
I have an application where a http post is sent to a service which returns a 202 status code.
I am trying to pass this via my apache httpd server to maintain same origin, and reduce the access into the private network.
What appears to happen however is:
- Client sends http post
- httpd correctly forwards the post to the application endpoint
- The Endpoint responds to the request
- httpd never forwards that response back to the client
- Client timeout waiting for a response
Has anyone seen this behavior before, or any ideas on why this is happening.
So far my thoughts are, that its specific to the http 202 response as another applicaion with similar functionality responds with a 200 status code and this is returned to the client
Regards
Mitchell