2002. szeptember 26. 11:59 d�tummal Ori Tend ezt �rtad: > Thanks for the reply! > I'm not sure I understand.. if I use in my JSP the standard <form> tag I > dont get this jsessionid parameter when browsing to the page. Is there a > way to use struts' <html:form> tag and not get this jsessionid?
If you use FORM based auth and disable cookies and don't use the EncodeURL() you have to reauthenticate yourself for every request. I can see the jsessionid appended only on the first page after the login page if I have cookies enabled. > I suspect that the jsessionid is added to the url by calling EncodeURL() at > the struts taglib. > I know that this may introduce problems to cookie-disabled visitors, but I > don't want the jsessionid to appear. Create a filter which processes the output and cut off from "jsessionid" to the first ";" in each page for each occurence of "jsessionid". If you insist. Why does it bother you? Tib -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

