Now, with your ExtDirectHandler, my "/rpc" request are coming into the
PreRequestHandlerExecute handler, but the HttpContext.Current.Session
is null.
After spending several hours trying to find the answer, I found the
following post:
http://stackoverflow.com/questions/1382791/asp-net-what-to-do-if-current-session-is-null
The top answer lists 3 possible causes, and the third bullet
definitely applies. I tried adding
System.Web.SessionState.IRequiresSessionState to the DirectHttpHandler
class, and the whole thing just worked!
Could you please add the IRequiresSessionState interface to the
DirectHttpHandler class?
Thanks,
Mariana