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.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.