How do I capture and playback http web requests against multiple web servers?

Posted by KevM on Server Fault See other posts from Server Fault or by KevM
Published on 2010-06-30T14:08:26Z Indexed on 2014/08/20 22:23 UTC
Read the original article Hit count: 181

Filed under:
|
|
|

My overall goal is to not interrupt a production system while capturing HTTP Posts to a web application so that I can reverse engineer the telemetry coming from a closed application. I have control over the transmitter of the HTTP Posts but not the receiving web application.

It seems like I need a request "forking" proxy. Sort of a reverse proxy that pushes the request to 2 endpoints, a master and slave, only relaying the response from the master endpoint back to the requester. I am not a server geek so something like this may exist but I don't know the term of art for what I am looking for.

Another possibility could be a simple logging proxy. Capture a log of the web requests. Rewrite the log to target my "slave" web application. Playback the log with curl or something.

Thank you for your assistance.

© Server Fault or respective owner

Related posts about webserver

Related posts about proxy