I had probelms with Ajax.NET pro with an application using a custom
sessionstate provider (developed by me for postgresql), and
cookieless="true". It turns out that I could fix the problem by
changing the following in Utilities.cs (line 104).
Replace this:
cookieUri = "(" +
System.Web.HttpContext.Current.Request.ServerVariables["HTTP_ASPFILTERSESSIONID"]
+ ")";
with this:
cookieUri = "(S(" + System.Web.HttpContext.Current.Session.SessionID +
"))";
and it works again. The oriinal cookieUri was always returning "()"
rather than including the sessionid, and besides, afaik (at least on
win2003 svr, IIS 6.0), the session id is included in the URL as
"(S("+sessionid+"))"
Has anyone else run into this? is this a reliable solution?
Cheers
Ati
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ajax.NET Professional" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/ajaxpro
The latest downloads of Ajax.NET Professional can be found at
http://www.ajaxpro.info/
Don't forget to read my blog at http://weblogs.asp.net/mschwarz/
The open source project is now located at
http://www.codeplex.com/Wiki/View.aspx?ProjectName=AjaxPro
-~----------~----~----~----~------~----~------~--~---