RE: [cas-dev] HttpModule threading model

2009-03-27 Thread Scott Holodak
Hi Bill, You could spy on what order events are processing and objects are created using Trace logging. Call Trace.Write() in your Module's Init function and event handlers. Assign a random number ID property to the Module in the init function and output that ID in the trace function in each

Re: [cas-dev] HttpModule threading model

2009-03-27 Thread Marvin Addison
> Anyone have a good resource on the HttpModule/HttpApplication threading model? I'm fairly certain it works like Java servlet filters. The ASP.NET worker processess each have a thread pool for handling HTTP requests. When an incoming request is received, a pool thread is borrowed to handle that