[jboss-user] [JBoss Messaging] - Re: org.jboss.jms.client.container.ClosedInterceptor ERROR

clebert.suconic@jboss.com do-not-reply at jboss.com
Mon Apr 21 16:02:46 EDT 2008


You probably closed some of the Objects you're using...

You probably closed the connection, the Session or the Producer itself.


When you close the Connection, the whole hierarchy of objects will be also created.  For example,

If you do this:

Connection a = .... create the connection.
Session b = ... a.createSession....
MessageProducer c = b.createProducer...


when you do a.close();


both b and c will be closed after this call.

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4145628#4145628

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4145628



More information about the jboss-user mailing list