Hi Jozef,
thank you for your answer. The Bugtracker link was the right direction! I'm 
using Glassfish 3.1.2.2 and the web.xml has a Bug in 5.0.2. overlays ...

In this posting I've found the solution
https://fralef.me/tomcat-disable-jsessionid-in-url.html

I had uncomment 

    <session-config>
        <tracking-mode>COOKIE</tracking-mode>
    </session-config>

because it's unknown in 2.4 schema ... but this produces the login Bootstrap 
bug ...

So it has to be:


...
<web-app xmlns="http://java.sun.com/xml/ns/javaee"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"; version="3.0">
...

Include

    <session-config>
        <tracking-mode>COOKIE</tracking-mode>
    </session-config>

again ...

Is known and all works fine ...

Marek

-- 
Context is everything: 
http://forum.magnolia-cms.com/forum/thread.html?threadId=db87aafe-0b5a-4cd5-a8bc-260c3660cea3


----------------------------------------------------------------
For list details, see http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: <[email protected]>
----------------------------------------------------------------

Reply via email to