2008-01-12 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / class / Mainsoft.Web / Mainsoft.Web.SessionState / ServletSessionIDManager.cs
index 68131c494f448e73b6414829fb48b86e9ab62e06..4aaf38d97d7f64ec9377a8cfa3c1564835bf5027 100755 (executable)
@@ -1,24 +1,53 @@
+//\r
+// (C) 2006 Mainsoft Corporation (http://www.mainsoft.com)\r
+// Author: Konstantin Triger <kostat@mainsoft.com>\r
+//\r
+\r
+//\r
+// Permission is hereby granted, free of charge, to any person obtaining\r
+// a copy of this software and associated documentation files (the\r
+// "Software"), to deal in the Software without restriction, including\r
+// without limitation the rights to use, copy, modify, merge, publish,\r
+// distribute, sublicense, and/or sell copies of the Software, and to\r
+// permit persons to whom the Software is furnished to do so, subject to\r
+// the following conditions:\r
+//\r
+// The above copyright notice and this permission notice shall be\r
+// included in all copies or substantial portions of the Software.\r
+//\r
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,\r
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
+//\r
+\r
 using System;\r
 using System.Collections.Generic;\r
 using System.Text;\r
 using System.Web;\r
 using System.Web.SessionState;\r
 using javax.servlet.http;\r
+using Mainsoft.Web.Hosting;\r
 \r
 namespace Mainsoft.Web.SessionState\r
 {\r
+       /// <summary>\r
+       /// <para>This class supports the Framework infrastructure and is not intended to be used directly from your code.</para>\r
+       /// </summary>\r
        public sealed class ServletSessionIDManager : ISessionIDManager\r
        {\r
                #region ISessionIDManager Members\r
 \r
                public string CreateSessionID (HttpContext context) {\r
-                       return ServletSessionStateStoreProvider.GetWorkerRequest (context).\r
-                               ServletRequest.getSession(true).getId();\r
+                       return ServletSessionStateStoreProvider.GetSession (context, true).getId ();\r
                }\r
 \r
                public string GetSessionID (HttpContext context) {\r
-                       HttpServletRequest request = ServletSessionStateStoreProvider.GetWorkerRequest (context).ServletRequest;\r
-                       return request.isRequestedSessionIdValid () ? request.getRequestedSessionId () : null;\r
+                       BaseWorkerRequest request = J2EEUtils.GetWorkerRequest (context);\r
+                       return request.IsRequestedSessionIdValid () ? request.GetRequestedSessionId () : null;\r
                }\r
 \r
                public void Initialize () {\r
@@ -30,7 +59,7 @@ namespace Mainsoft.Web.SessionState
                }\r
 \r
                public void RemoveSessionID (HttpContext context) {\r
-                       ServletSessionStateStoreProvider.GetWorkerRequest (context).ServletRequest.getSession (false).invalidate ();\r
+                       ServletSessionStateStoreProvider.GetSession (context, false).invalidate ();\r
                }\r
 \r
                public void SaveSessionID (HttpContext context, string id, out bool redirected, out bool cookieAdded) {\r