1 Reply Latest reply on Jun 29, 2007 5:26 AM by adrian.brock

    Message consumer closing due to error in listening thread ,

    ssuyamboo

      Hi,
      I close the subscriber and associated session , connection etc by calling

      public static void stop() throws JMSException {
      if (topicSession != null){
      topicSession.close();
      }
      if (topicConnection != null){
      topicConnection.stop();
      topicConnection.close();
      }
      }


      Everytime I am being thrown with following messages ,

      (mq.SpyMessageConsumer 736 ) Message consumer closing due to error in listening thread.
      javax.jms.IllegalStateException: Session is closed.
      at org.jboss.mq.SpyMessage.doAcknowledge(SpyMessage.java:319)
      at org.jboss.mq.SpyMessageConsumer.run(SpyMessageConsumer.java:728)
      at java.lang.Thread.run(Thread.java:534)
      (mq.Connection 460 ) Connection failure, use javax.jms.Connection.setExceptionListener() to handle this error and reconnect
      javax.jms.IllegalStateException: Session is closed.
      at org.jboss.mq.SpyMessage.doAcknowledge(SpyMessage.java:319)
      at org.jboss.mq.SpyMessageConsumer.run(SpyMessageConsumer.java:728)
      at java.lang.Thread.run(Thread.java:534)


      This looks like a warning message. Is this a bug?

      Thanks
      Sundar