WebSetvice and HttpApplication

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Does anyone know what HttpApplication calls are made during a WebService
request?

I am very familiar with this when a Page request is generated and I have
code in:
Application_BeginRequest
Application_AuthenticateRequest

that need to be called and made available to the WebService I would actually
like to create a custom WebService base class to handle this much like I do
with the Page class.

Any help or examples would be appreciated.

Thanks,

Mike
 
Mike,
The ASP.NET WebService infrastructure runs "over" the ASP.NET pipeline
model, so you should be able to hook and process most of the same events. It
should be very easy to wire up some debug statements in these various
eventhandlers to see which ones are being fired.
Peter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top