Hello Ken,
hmmm..
What about IIS7? The same ISAPI stuff?
---
WBR, Michael Nemtsev [.NET/C# MVP].
My blog:
http://spaces.live.com/laflour
Team blog:
http://devkids.blogspot.com/
"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo
KS> HTTPModule is only invoked once request is handed off to ASP.NET
KS> ISAPI extension:
KS>
KS> http.sys -> IIS pipeline -> determine extension -> ASP.NET ISAPI
KS> extension -> ASP.NET pipeline
KS>
KS> Requests for static files, for example, are handled by IIS Static
KS> file handler, not ASP.NET, so HTTPModule would never be invoked
KS> (unless you map all file extensions to ASP.NET)
KS>
KS> ISAPI filter (or lower level tool, e.g. a packet capture tool) is
KS> probably the only way.
KS>
KS> Cheers
KS> Ken
KS>KS>
Hello Andy,
I think that you need to implement HttpModule which will just log all
request to the desired location
Start from herehttp://
www.15seconds.com/issue/020417.htm
---
WBR, Michael Nemtsev [.NET/C# MVP]. My blog:
http://spaces.live.com/laflour
Team blog:
http://devkids.blogspot.com/
"The greatest danger for most of us is not that our aim is too high
and we miss it, but that it is too low and we reach it" (c)
Michelangelo
AF> Hi,
AF> AF> I am wondering if there is any way to log the HTTP traffic on
an
IIS
AF> server (including headers but preferably the body as well),
either
AF> at the IIS or asp.net level
AF> AF> I know I could write my own isapi dll or .net filter, but I
was
AF> rather hoping someone else has already done it. I'm sure it's
quite
AF> a common requirement
AF> AF> Andy
AF>- Hide quoted text -
- Show quoted text -