DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=4613>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=4613

Thread which extracts Session object obtained from HttpSessionBindingEvent & queries 
the session object hangs

[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID



------- Additional Comments From [EMAIL PROTECTED]  2001-11-03 11:50 -------
It is far more likely that an uncaught exception occurs on that line. Try 
replacing it with: 
try {
 User user = (User) session.getAttribute(PTLConstants.USER_KEY);
} catch (Throwable t) {
 t.printStackTrace();
}
to see what's happening. The most likely is a ClassCastException when casting 
to the 'User' type.

If I'm wrong and no exception is thrown on that line, please reopen the bug.

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to