Monday, November 24, 2014

Capturing traffic from .Net app to https://localhost using Fiddler

Recently I was trying to capture traffic from my .Net help to a site hosted in IIS Express at  https://localhost:port
The issue was that fiddler wasn't capturing these requests. I found various alternatives like using IP address or machine name but that would results in certificate errors due to host name mismatch.

Finally found the option of using https://localhost.fiddler:port instead of https://localhost:port which would then capture the traffic in Fiddler.

No comments:

Post a Comment