views:

566

answers:

2

Hi i have webserver on windows xp iis 5 sp3. I see logs but thre are only url to my site. But i need see all request informations(headers an body) For example I go to GMAIl and i click search rss feed(i add my own rss) And gmail need send request to my own webserver 13:01:05 74.125.16.68 GET /9.rss 200 (it send request and i saw log). I want to see all info about request Headers Content-type rss Keep-ALive

ETC... body

Fiddler dont see this request i have 2 way(safe it with iis or search a good http debugger

+1  A: 

Go to tools -> fillder options -> Connections Tab -> Monitor all connections. Good Luck :D.

Al Katawazi
That is only useful to when a dialup, VPN or some other PPTP tunnel is up since it enables Fiddler to be the proxy for all such connections rather than just the LAN connection.
AnthonyWJones
+3  A: 

Ordinarily Fiddler will show all HTTP traffic going via the Wininet http stack since it tweaks the proxy settings for Wininet when it starts capturing.

In order to route other requests via Fiddler applications need to be manually directed to the Fiddler.

In a .NET application you would 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 be sure that Fiddler is capturing when this is enabled and set enabled to false before pausing capture or closing fiddler.

For other applications which may be using the WinHTTP stack use the command:-

proxycfg

to see what the current proxy config is for WinHTTP. (Which is likely none). Then:-

proxycfg -u

to point WinHTTP at the same settings used by WinINET after capture has begun. Before capture is stopped use:-

proxycfg -d

to restore direct connection (or use proxycfg -h to learn how to restore the original settings).

AnthonyWJones
Sorry but i don't see any http requests in fiddler
i edit web.config
Have you made sure filtering is off in Fiddler, for example fiddler can explictely filter out RSS requests so as not to get clogged up with them. Also you are running fiddler on the machine actually making the requests? If you see requests on a client machine going to a web server you aren't going to see the subsequent requests that the web server may make to other servers, to do that you need to run fiddler on the server itself.
AnthonyWJones
My server have get request from google but i don't see it in google

related questions