views:

140

answers:

0

I created a web service in .net 3.5, and now I would like to log all incoming calls to the service. The log should contain the name of the called method and the parameters passed to it.

I have been looking into creating a hhtpmodule for this, but I am not sure how to extract the method name and parameter values from HttpApplication.

Another solution might be to make a class decorator?