Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can Fiddler2 be used to monitor SOAP requests made in Visual Studio debugging session

I have a .NET application which makes SOAP web service calls to a 3rd-party web service.

While debugging the application in Visual Studio, I would like to monitor the outbound HTTP requests using Fiddler2 or a similar tool?

Is this possible? How can it be done?

Update 2011.02.09 - the web service is 3rd-party, not localhost.

like image 642
frankadelic Avatar asked Feb 04 '11 19:02

frankadelic


Video Answer


2 Answers

Should be possible. I have been using Fiddler to debug my web service (REST) calls and it shouldn't be different with SOAP.

Note that you will need to use IIS and not the visual studio development server. Make sure that you use the machine name instead of localhost and that fiddler is set to capture all processes.

like image 74
Mark PM Avatar answered Sep 28 '22 04:09

Mark PM


Fiddler can't intercept traffic through localhost, however this blog indicates a workaround to make Fiddler capture localhost traffic.

EDIT: To answer your question, yes Fiddler can capture SOAP just fine.

like image 40
Chris O Avatar answered Sep 28 '22 05:09

Chris O