anonymous wrote : private class JMSFailureListener implements RemotingSessionListener
| {
| public void sessionDestroyed(long sessionID, MessagingException me)
| {
| if (me == null)
| return;
|
| JMSException je = new JMSException(me.toString());
|
| je.initCause(me);
|
| exceptionListener.onException(je);
| }
|
| }
see JBossConnection:
private class JMSFailureListener implements RemotingSessionListener
| {
| public void sessionDestroyed(long sessionID, MessagingException me)
| {
| if (me == null)
| return;
|
| JMSException je = new JMSException(me.toString());
|
| je.initCause(me);
|
| exceptionListener.onException(je);
| }
|
| }
The session id is not even used here, but if it was logged it may get confusing if someone
was trying to match up client and server logs.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4153757#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...