Re: session tracking without cookies [NO-SOLUTION?]

2003-10-29 Thread Joose Vettenranta
ke, 2003-10-29 kello 10:21, Joose Vettenranta kirjoitti: ti, 2003-10-28 kello 19:08, Joose Vettenranta kirjoitti: Hi, that solution does work, but ONLY if browser won't use cookies. So, I can't use map:redirect-to uri=http://host/directory/; / If browser won't have cookies. Seems like I

Re: session tracking without cookies [SOLUTION?]

2003-10-28 Thread Joose Vettenranta
Hi, because map:redirect-to uri=host... session=true / did not work, I made add on to my authenticator XSP I have like this: map:match pattern=*.*.html map:act type=session-invalidator / map:act type=xsp-action src=logic/check-login.xsp map:parameter name=id value={1} /

session tracking without cookies

2003-10-24 Thread Joose Vettenranta
Hey, seems like with encodeUrl I can do HTML-pages with session tracking and without cookie support, yes? But how about sitemap and redirects? How to insert session information to redirects? map:redirect-to uri=http://host/di/rec/tory{session:id}; / or how? I am trying to make cookie free

Re: session tracking without cookies

2003-10-24 Thread Joerg Heinicke
map:redirect-to uri=http://host/di/rec/tory; session=true/ http://cocoon.apache.org/2.1/userdocs/concepts/redirection.html http://wiki.cocoondev.org/Wiki.jsp?page=Redirects Joerg Joose Vettenranta wrote: Hey, seems like with encodeUrl I can do HTML-pages with session tracking and without cookie

Re: session tracking without cookies

2003-10-24 Thread Joose Vettenranta
pe, 2003-10-24 kello 12:03, Joerg Heinicke kirjoitti: map:redirect-to uri=http://host/di/rec/tory; session=true/ I tried map:redirect-to uri=/{session-attr:name}/ session=true / And it forwarded it to /joose/ and not to /joose/;JSESSIONID=gf08hf40ff4fw so it did not work.