With Fiddler, I want to track the call to an external web service created in the body of an ASP.NET MVC action method.
When I run this code as a console application or Nunit test, I can see the request / response to the external server using Fiddler;
[Test] public void TestWebservice() { MyWebService checker = new MyWebService(); i = checker.GetAge("bob"); Assert.True(i >= 0); }
When I call the web service from the ASP.MVC action method, I do not see the main request to the external server, although I can see the action method request from my browser;
public ActionResult MakeTheCall(string name) { MyWebService checker = new MyWebService(); i = checker.GetAge(name); return View(); }
Is there a way for Fiddler to display a request / response to a third-party web service created in the body of the ASP.NET MVC action method?
source share