Integrace s ASP.NET
*WSS v2
*ISAPI filtr pro IIS
*Požadavek vykonán před inicializací ASP.NET 1.1 kontextu
*WSS v3
*ASP.NET 2.0 HttpHandler
*Inicializace WSS začíná až po kompletním ověření v ASP.NET 2.0
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.