Hello everyone,
I'm trying to modify org.apache.catalina.authenticator.FormAuthenticator.java for allow session replication across a cluster when using Form Based authentication.
The problem is, ClusteredSingleSignOn has an issue when Form Based authentication is used. This stores the authenticate related session in a map which is not replicated across the cluster. I'm trying to resolve this issue by forcing the replication across the cluster in the file mentioned above but i still don't get it.
My question is, how can i force replication in that file? or what is the function which i have to call to explicit replicate session to other nodes?
I DO NOT want to use sticky sessions in my load_balancer because i will lose my cluster aproachs. I need to replicate session across the cluster when using form based authentication.
I use jboss 4.2.1. I'll apreciate any help.
Thanks.