session tracking

[email protected] Fri, 24 Oct 2003 13:14:35 +0200 (CEST)
Newsgroups gmane.comp.web.maverick.general
Message-ID <[email protected]>
Hello,

When using Maverick and when cookies are disabled... I use Java's encodeURL method to get the sessionid in the URL so the URL then looks something like:
menu.m;jsessionid=XXXXX

In the Maverick.xml file I got the following part:

<command name="menu">
      <controller class="Menu"/>
      <view name="success" path="planning.m"/>
      <view name="error" path="menu.m"/>
 </command>

Of course I want to get the sessionid passed on to the controller class used in the planning-command. So the path when Menu returns success should be planning.m;jsessionid=XXXXX. What is a smart way to pass the sessionid on to the next pages?

David