DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=36541>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ· INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=36541 ------- Additional Comments From [EMAIL PROTECTED] 2005-09-08 11:01 ------- Hmm, I also thing the spec interpretation from the current StandardSession inside Tomcat 5.0 and 5.5. is wrong. We had the same problem at Cluster DeltaSession for year ago. We now sync also the session attribute read operations. Without this fix the Cluster setup is useless for production servers. I vote for change the StandardSession implementation to.. public Object getAttribute(String name) { if (!isValid()) throw new IllegalStateException(sm .getString("standardSession.getAttribute.ise")); synchronized (attributes) { return (attributes.get(name)); } } public Enumeration getAttributeNames() { if (!isValid()) throw new IllegalStateException(sm .getString("standardSession.getAttributeNames.ise")); synchronized (attributes) { return (new Enumerator(attributes.keySet(), true)); } } === Peter -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]