Instructor
Notes |
|
Discuss how the
integration between WSS V2 and ASP.NET 1.1 was less-than-desirable because
WSS was added to the IIS request processing architecture as an ISAPI filter.
That means that WSS stared executing before the request had been initialized
with ASP.NET context. |
|
WSS V3 has much
better integration because it is configured in ASP.NET 2.0 as a HttpHandler.
Therefore, requests always enter the ASP.NET runtime and are completely
authenticated and initialized with ASP.NET context before being sent off to
WSS. |