We are required to forward the all user’s request to a customized request handler to another web application instead of content server to serve that request. Using Socket, we are able to request other third party web application based on the request parameters of the request handler, however the response is required to directly sent to the CS client and not to the Content server.
Hence when a user has requested action from url, lets say http://csprod/otcs.cs.exe?func=cms.viewtasks, this handler should forward user request to another application who should be responsible for sending response to the client and not to the content server.
I believe some request headers may be required to set for the third party target application http call. Any ideas please? how can we copy request headers from original request to new request we are initiating?