I have written an HttpModule that adds a response filter. The filter is capturing page output and storing it in a session variable.
- I am able to access HttpContext.Current.Session in my HttpModule.
- The HttpModule is handling the PostAcquireRequestState event.
- I am still able to access HttpContext.Current.Session in the PostAcquireRequestState event.
- In the PostAcquireRequestState event, I add a custom stream that inherits from Stream to Response.Filter
- HttpContext.Current.Session is null when accessed from the Stream.Write method.
Everything worked fine when using an InProc SessionState. However, I now must use StateServer. Using StateServer, the code is now broken.
Any ideas?