How to see the request in a violin on my site and from my site iis 5

Hi, I have a web server on windows xp iis 5 sp3. I see logs, but this is only the URL of my site. But I need to see all the request information (body headers) For example, I go to GMAIl and I click the rss search button (I add my own rss). And gmail needs to send a request to my own web server 13:01:05 74.125.16.68 GET / 9.rss 200 (it sends a request and I saw a log). I want to see all the information about the request. Headers Content type rss Keep-Alive

ETC ... Body

Fiddler does not see this request, I have 2 ways (secure with iis or search for a good http debugger

+5
source share
2 answers

Typically, Fiddler will show all HTTP traffic going through the Wininet http stack as it changes the proxy settings for Wininet when it starts capturing.

To redirect other requests through Fiddler applications, you must manually route to Fiddler.

In a .NET application, you must use the .config file. Add the following: -

<system.net>
    <defaultProxy enabled="true">
        <proxy proxyaddress="http://127.0.0.1:8888" bypassonlocal="False"/>
    </defaultProxy>
</system.net>

Just make sure Fiddler captures when it is turned on and set it to false to pause capturing or closing the violinist.

For other applications that can use the WinHTTP stack, use the command: -

proxycfg

to find out what the current proxy configuration for WinHTTP is. (Probably not). Then: -

proxycfg -u

WinHTTP , WinINET . : -

proxycfg -d

( proxycfg -h, , ).

+16

β†’ β†’ "" β†’ " ". : D.

+1

All Articles