I'm writing a native C++ IIS HTTP module, the kind that starts with the RegisterModule() function. I'd like to access the ASP session variables, but I don't see anything in httpserv.h that seems "Session" related.
I found an old page where someone says it isn't possible to get the ASP session object from an ISAPI module, but I'm hoping it's now possible to access the session variables from an IIS HTTP module using native C++.
I have objects of type IHttpContext and IHttpRequest. Does anyone know how I can access the ASP session variables?
Thanks!