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