I'm just wondering: did anyone get Fiddler to work with the Windows Phone 7 emulator (RTW build)? When I try to work with Fiddler, I get a WebException when working with ins HttpWebRequest - NotFound , to be specific. WireShark is working fine.
The problem that I see here is that Fiddler acts as a proxy server, and the WP7 application that I use does not pass the proxy server to transmit the request, and WireShark works differently - it does not transmit traffic through it.
There was a similar question here , but in my case I would like to redefine the proxy settings so that the WP7 application connects to http: /127.0.0.1: 8888 as the proxy address. Since WP7 tools are based on Silverlight, is it possible to redirect HttpWebRequest to a proxy first?
EDIT: In this page (Fiddler documentation) states that XDE (Windows Phone 7 emulator) should automatically receive the settings of the system proxy, but for some reason it seems that this is not so.
source
share