Does that answer your question (from the Servlet Spec 2.4, Page 58)? SRV.7.1.3 URL Rewriting
URL rewriting is the lowest common denominator of session tracking. When a client will not accept a cookie, URL rewriting may be used by the server as the basis for session tracking. URL rewriting involves adding data, a session ID, to the URL path that is interpreted by the container to associate the request with a session. The session ID must be encoded as a path parameter in the URL string. The name of the parameter must be jsessionid. Here is an example of a URL containing encoded path information: http://www.myserver.com/catalog/index.html;jsessionid=1234 Bernhard > -----Ursprüngliche Nachricht----- > Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Gesendet: Montag, 11. September 2006 20:28 > An: [email protected] > Betreff: Re: [shale] url rewriting > > > >From: "stephan opitz" <[EMAIL PROTECTED]> > > > > ok nowones knows > > > > I believe that URL rewriting is container specific. You can > force url rewriting in some server (like Websphere) but > generally the web container will detect if cookies are > enabled and choose url rewriting over cookies if cookies are > disallowed by the browser. > > Clay doesn't do anything special. The full xml view suffix > is mapped and dispatched thru the faces servlet. > > Are you running into problems? > > Gary > > > > 2006/9/6, stephan opitz : > > > is it possible to apply a complete url rewriting. > > > i know how to change the suffix (maybe .xml, .***), but > how do i have > > > full control of the shown url. > > > > > > is it supported? > > > > > > stephan > > > >
