Re: what does j_security_check do in clustering?

2009-09-24 Thread Rex Wang
What is anote? I am quite understanding its definition.. thanks 2009/9/23 Filip Hanik - Dev Lists devli...@hanik.com j_security_check is stored as a note with the user session, but that data is not being replicated. Filip On 09/17/2009 12:05 AM, Rex Wang wrote: Dear Tomcat, I meet

RE: what does j_security_check do in clustering?

2009-09-24 Thread Caldarale, Charles R
From: Rex Wang [mailto:rwo...@gmail.com] Subject: Re: what does j_security_check do in clustering? What is anote? I am quite understanding its definition.. Look at the code. The notes field in a StandardSession is just a Hashtable containing an arbitrary set of key/value pairs, some

Re: what does j_security_check do in clustering?

2009-09-24 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Rex, On 9/24/2009 3:15 AM, Rex Wang wrote: What is anote? I am quite understanding its definition.. Just to clarify Chuck's comments: a note has nothing to do with the Servlet API. It's an implementation detail specific to Tomcat where, among

Re: what does j_security_check do in clustering?

2009-09-24 Thread Rex Wang
Thanks a lot to all your guys!! -Rex 2009/9/24 Christopher Schultz ch...@christopherschultz.net -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Rex, On 9/24/2009 3:15 AM, Rex Wang wrote: What is anote? I am quite understanding its definition.. Just to clarify Chuck's comments: a note

Re: what does j_security_check do in clustering?

2009-09-23 Thread Filip Hanik - Dev Lists
j_security_check is stored as a note with the user session, but that data is not being replicated. Filip On 09/17/2009 12:05 AM, Rex Wang wrote: Dear Tomcat, I meet a problem when config a web project which using the form based security in clustering. When I set session affinity = true in

Re: what does j_security_check do in clustering?

2009-09-23 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Filip, On 9/23/2009 10:12 AM, Filip Hanik - Dev Lists wrote: j_security_check is stored as a note with the user session, but that data is not being replicated. So, the session notes specifically are not replicated? That seems to indicate that

Re: what does j_security_check do in clustering?

2009-09-23 Thread Filip Hanik - Dev Lists
On 09/23/2009 11:40 AM, Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Filip, On 9/23/2009 10:12 AM, Filip Hanik - Dev Lists wrote: j_security_check is stored as a note with the user session, but that data is not being replicated. So, the session notes

Re: what does j_security_check do in clustering?

2009-09-22 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Rex, On 9/20/2009 11:26 PM, Rex Wang wrote: I am using clustering, and the security checking process can not complete if the session affinity = false. Looks like the login name and password are posted to another node, and some times I got a 400

Re: what does j_security_check do in clustering?

2009-09-20 Thread Rex Wang
2009/9/18 Mark Thomas ma...@apache.org Rex Wang wrote: 2009/9/17 Mark Thomas ma...@apache.org Rex Wang wrote: Dear Tomcat, I meet a problem when config a web project which using the form based security in clustering. Clustering or load-balancing? Whether or not session

Re: what does j_security_check do in clustering?

2009-09-18 Thread Mark Thomas
Rex Wang wrote: 2009/9/17 Mark Thomas ma...@apache.org Rex Wang wrote: Dear Tomcat, I meet a problem when config a web project which using the form based security in clustering. Clustering or load-balancing? Whether or not session replication is configured between your Tomcat instance's

what does j_security_check do in clustering?

2009-09-17 Thread Rex Wang
Dear Tomcat, I meet a problem when config a web project which using the form based security in clustering. When I set session affinity = true in my front http server, the security check was done in single node, there is no problem with that. But if I set affinity = false, the requests from the

Re: what does j_security_check do in clustering?

2009-09-17 Thread Mark Thomas
Rex Wang wrote: Dear Tomcat, I meet a problem when config a web project which using the form based security in clustering. Clustering or load-balancing? Whether or not session replication is configured between your Tomcat instance's is key. When I set session affinity = true in my front

Re: what does j_security_check do in clustering?

2009-09-17 Thread Rex Wang
2009/9/17 Mark Thomas ma...@apache.org Rex Wang wrote: Dear Tomcat, I meet a problem when config a web project which using the form based security in clustering. Clustering or load-balancing? Whether or not session replication is configured between your Tomcat instance's is key. I