I have an HttpHandler that runs on the client page (cross-domain, not on our IIS server, etc.), and when they click on our built-in link, it launches Handler on our server. So far, everything is working fine.
Now I am trying to use the System.Web.HttpContext.Session object, but it is zero. I think this is null because we do not have a session until our HttpHandler is called? And a few calls to the handler will create a new session for each call? If so, did MS simply disable the Session object when called in the HttpHandler? Can anyone confirm this?
If so, what do you do to maintain state between calls? Some kind of SQL based data object? File?
TIA
Keith Barrows Jul 09 '09 at 22:30 2009-07-09 22:30
source share