usman shaheen
usman shaheen

Reputation: 3766

Forward a Copy of Http Requests to another system

I have a WCF service deployed on production. I'm looking for a tool to forward a 'Copy' of all the messages received by that service to a development server. I need this to debug the requests in my IDE on the Dev box.

Upvotes: 0

Views: 149

Answers (1)

Chris Morley
Chris Morley

Reputation: 2426

Do you have the source code to the WCF service? If so, would you be able to modify it and redeploy it with a copy of the communications sent elsewhere?

Otherwise, you could try writing a proxy to intercept the messages, and then forward them on to the existing service and to your dev box.

Also, you might look into ethereal and fiddler for looking at actual network traffic.

Upvotes: 1

Related Questions