https://issues.apache.org/bugzilla/show_bug.cgi?id=52761
--- Comment #4 from Jess Holle <[email protected]> 2012-02-24 16:48:01 UTC --- Are you possibly calling setAttribute() from threads other than the servlet request thread? I ask as this would be a very serious problem *if* this impacts the supported usage of this API. It is, however, enormously tempting (and useful in cases) to start calling servlet request APIs from other threads. This is explicitly not supported by either the servlet API or Tomcat. Doing such calls could cause problems for any of the threads involved -- including the servlet request thread. A related possibility as Mark suggests is that you're attempting to make the call after processing of the given servlet request has been completed, which again is unsupported by both the servlet API and Tomcat. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
