Does anybody know a way to capture all the function calls to a web service. I want to log the IP and the call, but I don't want to place a call to this function in every WebMethod.
Thanks for your help!
Add a global.asax and inside add a Application_BeginRequest event handler.
This will get called for every request into your application. Within the
event handler you can access the Request object which should give you anything
you'd need to know about the client HTTP request.
-Brock
DevelopMentor
http://staff.develop.com/ballen
> Does anybody know a way to capture all the function calls to a web
> service. I want to log the IP and the call, but I don't want to place
[quoted text clipped - 7 lines]
> Posted by a user from .NET 247 (http://www.dotnet247.com/)
> <Id>G0yzdL/Dj0iXXKlIK4+b4A==</Id>