I am trying to authenticate in my web application deployed on jboss running in cluster mode with two nodes.
After successful authentication, I am redirected to the administration page, where the filter checks if I am registered.
In offline mode, it works fine, but when I deploy in a production process that uses cluster mode, the filter rejects my request because it cannot access the session settings that I set during authentication.
Using developer tools, I see that there are three JSESSIONID cookies: one for / , one for the /myapplication , the other JSESSIONID-34234 for the /myapplication (I cleared all of them before starting the process).
Looking at jboss docs, I see no explanation, although this seems to be the source of my problem.
How can I get authentication work (I use http spring based authentication) in my JBoss cluster?
session-cookies session-variables jboss session-replication load-balancing
NotGaeL
source share