I have a C# console application that calls SSRS soap based webservice (service runs on a remote machine). I want to capture the incoming and outgoing soap request.
How can this be done?
Thanks
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.
Is this just for debugging purposes? If so, Fiddler is probably your best bet. Wireshark is also great, but it doesn’t do the HTTPS stuff that Fiddler does.
It’s possible to capture the data on the service side by effectively adding an incoming and outgoing filter which just passes the data along, logging it as it goes – but that’s slightly fiddly from what I remember. Worth the effort if you’re trying to do this for long-term audit etc, but for simple inspection I’d go with Fiddler.