Hide Forgot
project_key: SOA SendJMSMessage's stop method is: public void stop() throws JMSException { tc.close(); session.close(); tc.close(); } should be: public void stop() throws JMSException { tc.stop(); session.close(); tc.close(); }
Link: Added: This issue is a dependency of JBESB-1396