Re: How to disable URL rewriting for session id?

2005-07-04 Thread Julian Kerr
David G. Friedman wrote: I just skimmed through cvs and have this idea for you: Edit a copy of the Html Taglib's helper class, org.apache.struts.taglibs.TagUtils, so any methods that would pull in the session variable to append to the new URL don't do that. When it's built, put it under WEB-IN

Re: How to disable URL rewriting for session id?

2005-07-03 Thread Julian Kerr
Ahh, the problem spreadeth... also need to use plain old forms, which means no struts help there either. Guess this boils down to either finding a way to tell struts to stop rewriting url's, or another moving to another context... Julian Wendy Smoak wrote: From: "Julian Ker

Re: How to disable URL rewriting for session id?

2005-07-01 Thread Julian Kerr
Michael Jouravlev wrote: On 6/30/05, Julian Kerr <[EMAIL PROTECTED]> wrote: The html:link tag automatically applies URL rewriting to maintain session state in the absence of cookies. Is it possible to disable this feature? Have you tried <%@ page session="false&qu

How to disable URL rewriting for session id?

2005-06-30 Thread Julian Kerr
Dear All, The html:link tag automatically applies URL rewriting to maintain session state in the absence of cookies. Is it possible to disable this feature? [I'm using Resin in a shared environment. Resin considers the sessionid as part of the URL address, and hence I get 404 errors.] Also