The Cookieless session is not working for 3.3 dev (ie, ;jessionid=xxx is not appended) Here is the patch Thanks Arion P.S. Anyone still involving in 3.3 instead of 4.0? -- [This email and any files transmitted with it are confidential and may contain information that is legally privileged. They are intended solely for the addressee(s). Access to this email by anyone else is unauthorized. If you are not the intended recipient, please delete it and notify the sender by email immediately; you should not copy or use it for any purpose, nor disclose its contents to any other person. Thank you.]
Index: src/facade22/org/apache/tomcat/facade/HttpServletResponseFacade.java =================================================================== RCS file: /home/cvspublic/jakarta-tomcat/src/facade22/org/apache/tomcat/facade/HttpServletResponseFacade.java,v retrieving revision 1.6 diff -u -r1.6 HttpServletResponseFacade.java --- src/facade22/org/apache/tomcat/facade/HttpServletResponseFacade.java 2000/09/26 01:05:59 1.6 +++ src/facade22/org/apache/tomcat/facade/HttpServletResponseFacade.java +2000/10/20 08:05:23 @@ -152,7 +152,7 @@ public String encodeURL(String url) { if (isEncodeable(toAbsolute(url))) return (toEncoded(url, - response.getRequest().getRequestedSessionId())); + response.getRequest().getSessionId())); else return (url); }
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]