[jira] Commented: (GERONIMO-2880) TransportDisposedIOException occurs when trying to close ActiveMQ queue

2007-10-28 Thread Vamsavardhana Reddy (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-2880?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12538426
 ] 

Vamsavardhana Reddy commented on GERONIMO-2880:
---

Completed: At revision: 589532  
 o Thanks to Anish for providing the patch
 o Use a non XA datasource for activemq persistence
**: This commit can use a review.


> TransportDisposedIOException occurs when trying to close ActiveMQ queue
> ---
>
> Key: GERONIMO-2880
> URL: https://issues.apache.org/jira/browse/GERONIMO-2880
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: ActiveMQ
>Affects Versions: 2.0.x, 2.1
> Environment: Windows XP SP2
>Reporter: Aman Nanner
>Assignee: Vamsavardhana Reddy
>Priority: Critical
> Fix For: 2.0.x, 2.1
>
> Attachments: AMQ_NoTxDatasource.patch
>
>
> I have discovered some problems with queues while running unittest in our own 
> J2EE app.
> After sending a message on a queue, when we try to call the close() method on 
> the queue, we get the following exception:
> 
> org.apache.activemq.transport.TransportDisposedIOException: Peer 
> (vm://localhost#69) disposed.
> 
> where the number after "localhost" is different every time.
> We do not experience this problem with topics.  We are using ActiveMQ as part 
> of an "embedded" configuration with Geronimo.
> I've done some debugging and the problem occurs at this line in the 
> ActiveMQMessageProducer.close() method:
> 
> this.session.asyncSendPacket(info.createRemoveCommand());
> 
> The queue itself is disposed properly in the dispose() method that is called 
> in the line before, but this sending of the asynchronous packet fails.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (GERONIMO-2880) TransportDisposedIOException occurs when trying to close ActiveMQ queue

2007-10-26 Thread anish pathadan (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-2880?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12537956
 ] 

anish pathadan commented on GERONIMO-2880:
--

Hi All,
 The issue is due to geronimo using XA datasource (SystemDatasource) for 
activemq persistence. I have discussed this issue in activemq forum and I got 
the recommendation to use a non XA datasource for activemq persistence. The 
reason is activemq itself is managing the transaction for broker persistence 
and it doesn't make sense to use XA datasource as there is no other Transaction 
Manager involved in it.
I have modified the activemq-broker plan to use NoTxDatasource and I got 
the issue resolved.I am attaching a patch also.I verified the issue in AG 2.0.1 
release.

Thanks,
Anish Pathadan

> TransportDisposedIOException occurs when trying to close ActiveMQ queue
> ---
>
> Key: GERONIMO-2880
> URL: https://issues.apache.org/jira/browse/GERONIMO-2880
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: ActiveMQ
>Affects Versions: 2.0.x
> Environment: Windows XP SP2
>Reporter: Aman Nanner
>Priority: Critical
> Fix For: 2.0.x, 2.1
>
>
> I have discovered some problems with queues while running unittest in our own 
> J2EE app.
> After sending a message on a queue, when we try to call the close() method on 
> the queue, we get the following exception:
> 
> org.apache.activemq.transport.TransportDisposedIOException: Peer 
> (vm://localhost#69) disposed.
> 
> where the number after "localhost" is different every time.
> We do not experience this problem with topics.  We are using ActiveMQ as part 
> of an "embedded" configuration with Geronimo.
> I've done some debugging and the problem occurs at this line in the 
> ActiveMQMessageProducer.close() method:
> 
> this.session.asyncSendPacket(info.createRemoveCommand());
> 
> The queue itself is disposed properly in the dispose() method that is called 
> in the line before, but this sending of the asynchronous packet fails.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



Re: [jira] Commented: (GERONIMO-2880) TransportDisposedIOException occurs when trying to close ActiveMQ queue

2007-09-10 Thread anish pathadan
Hi Aman,I have made the log level to ERROR in
TransportConnection.OneJIRA is opened in ActiveMQ project for it.
https://issues.apache.org/activemq/browse/AMQ-1384

For your doubt on how to set AUTOCOMMIT to off, I am not sure whether
activemq ra has such a property. f your requirement is to send a set of
messages to JMS broker as an atomic unit,then you can use a transacted jms
session.

On 9/5/07, Aman Nanner (JIRA) <[EMAIL PROTECTED] > wrote:
>
>
>[
> https://issues.apache.org/jira/browse/GERONIMO-2880?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525138]
>
> Aman Nanner commented on GERONIMO-2880:
> ---
>
> Hi Anish,
>
> As per my last comment, I had discovered that the exception was being
> generated because the connection was already closed by ActiveMQ due to an
> error that occurred during the sending of the last message.  This error
> message did not appear in my log because my logging threshold was set above
> DEBUG, so I had suggested that errors that occur during the sending of
> message should perhaps be logged at a higher threshold level (such as WARN
> or ERROR).
>
> Also, the source problem was this:
>
> {{java.io.IOException: Cannot set AUTOCOMMIT ON when in an XA
> connection.}}
>
> Does anybody know how to set AUTOCOMMIT to off for the JMS resource
> adapter?
>
> > TransportDisposedIOException occurs when trying to close ActiveMQ queue
> > ---
> >
> > Key: GERONIMO-2880
> > URL: https://issues.apache.org/jira/browse/GERONIMO-2880
> > Project: Geronimo
> >  Issue Type: Bug
> >  Security Level: public(Regular issues)
> >  Components: ActiveMQ
> >Affects Versions: 2.0.x
> > Environment: Windows XP SP2
> >Reporter: Aman Nanner
> >Priority: Critical
> > Fix For: 2.0.x, 2.1
> >
> >
> > I have discovered some problems with queues while running unittest in
> our own J2EE app.
> > After sending a message on a queue, when we try to call the close()
> method on the queue, we get the following exception:
> > 
> > org.apache.activemq.transport.TransportDisposedIOException: Peer
> (vm://localhost#69) disposed.
> > 
> > where the number after "localhost" is different every time.
> > We do not experience this problem with topics.  We are using ActiveMQ as
> part of an "embedded" configuration with Geronimo.
> > I've done some debugging and the problem occurs at this line in the
> ActiveMQMessageProducer.close() method:
> > 
> > this.session.asyncSendPacket(info.createRemoveCommand());
> > 
> > The queue itself is disposed properly in the dispose() method that is
> called in the line before, but this sending of the asynchronous packet
> fails.
>
> --
> This message is automatically generated by JIRA.
> -
> You can reply to this email to add a comment to the issue online.
>
>


-- 
Best Regards,
Anish Pathadan


[jira] Commented: (GERONIMO-2880) TransportDisposedIOException occurs when trying to close ActiveMQ queue

2007-09-05 Thread Aman Nanner (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-2880?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525138
 ] 

Aman Nanner commented on GERONIMO-2880:
---

Hi Anish,

As per my last comment, I had discovered that the exception was being generated 
because the connection was already closed by ActiveMQ due to an error that 
occurred during the sending of the last message.  This error message did not 
appear in my log because my logging threshold was set above DEBUG, so I had 
suggested that errors that occur during the sending of message should perhaps 
be logged at a higher threshold level (such as WARN or ERROR).

Also, the source problem was this:

{{java.io.IOException: Cannot set AUTOCOMMIT ON when in an XA connection.}}

Does anybody know how to set AUTOCOMMIT to off for the JMS resource adapter?

> TransportDisposedIOException occurs when trying to close ActiveMQ queue
> ---
>
> Key: GERONIMO-2880
> URL: https://issues.apache.org/jira/browse/GERONIMO-2880
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: ActiveMQ
>Affects Versions: 2.0.x
> Environment: Windows XP SP2
>Reporter: Aman Nanner
>Priority: Critical
> Fix For: 2.0.x, 2.1
>
>
> I have discovered some problems with queues while running unittest in our own 
> J2EE app.
> After sending a message on a queue, when we try to call the close() method on 
> the queue, we get the following exception:
> 
> org.apache.activemq.transport.TransportDisposedIOException: Peer 
> (vm://localhost#69) disposed.
> 
> where the number after "localhost" is different every time.
> We do not experience this problem with topics.  We are using ActiveMQ as part 
> of an "embedded" configuration with Geronimo.
> I've done some debugging and the problem occurs at this line in the 
> ActiveMQMessageProducer.close() method:
> 
> this.session.asyncSendPacket(info.createRemoveCommand());
> 
> The queue itself is disposed properly in the dispose() method that is called 
> in the line before, but this sending of the asynchronous packet fails.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (GERONIMO-2880) TransportDisposedIOException occurs when trying to close ActiveMQ queue

2007-09-05 Thread anish pathadan (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-2880?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525123
 ] 

anish pathadan commented on GERONIMO-2880:
--

Hi Aman,
I  could successfully send messages from a standalone client as well as 
from a servlet.There was no exception while closing the session or connection. 
Can you provide a test case for the issue.

Thanks,
Anish Pathadan

> TransportDisposedIOException occurs when trying to close ActiveMQ queue
> ---
>
> Key: GERONIMO-2880
> URL: https://issues.apache.org/jira/browse/GERONIMO-2880
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: ActiveMQ
>Affects Versions: 2.0.x
> Environment: Windows XP SP2
>Reporter: Aman Nanner
>Priority: Critical
> Fix For: 2.0.x, 2.1
>
>
> I have discovered some problems with queues while running unittest in our own 
> J2EE app.
> After sending a message on a queue, when we try to call the close() method on 
> the queue, we get the following exception:
> 
> org.apache.activemq.transport.TransportDisposedIOException: Peer 
> (vm://localhost#69) disposed.
> 
> where the number after "localhost" is different every time.
> We do not experience this problem with topics.  We are using ActiveMQ as part 
> of an "embedded" configuration with Geronimo.
> I've done some debugging and the problem occurs at this line in the 
> ActiveMQMessageProducer.close() method:
> 
> this.session.asyncSendPacket(info.createRemoveCommand());
> 
> The queue itself is disposed properly in the dispose() method that is called 
> in the line before, but this sending of the asynchronous packet fails.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (GERONIMO-2880) TransportDisposedIOException occurs when trying to close ActiveMQ queue

2007-09-04 Thread Aman Nanner (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-2880?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12524886
 ] 

Aman Nanner commented on GERONIMO-2880:
---

Ok, it turns out that the peer was disposed because of an exception during the 
transport process.  The real problem was the following IOException:

{{java.io.IOException: Cannot set AUTOCOMMIT ON when in an XA connection.}}

This problem caused the peer to be disposed which resulted in the error 
discussed in this JIRA issue.  However, this source problem was not logged as 
an ERROR to the console.  It seems that the error is only logged in DEBUG mode 
in the following code in the {{org.apache.activemq.broker.TransportConnection}} 
class:

{code}
public void serviceTransportException(IOException e) {
if( !disposed.get() ) {
transportException.set(e); 
if( transportLog.isDebugEnabled() )
transportLog.debug("Transport failed: "+e,e);
ServiceSupport.dispose(this);
}
}
{code}

I would think that this should probably be logged at a higher debug level, such 
as WARN or ERROR.

> TransportDisposedIOException occurs when trying to close ActiveMQ queue
> ---
>
> Key: GERONIMO-2880
> URL: https://issues.apache.org/jira/browse/GERONIMO-2880
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: ActiveMQ
>Affects Versions: 2.0.x
> Environment: Windows XP SP2
>Reporter: Aman Nanner
>Priority: Critical
> Fix For: 2.0.x, 2.1
>
>
> I have discovered some problems with queues while running unittest in our own 
> J2EE app.
> After sending a message on a queue, when we try to call the close() method on 
> the queue, we get the following exception:
> 
> org.apache.activemq.transport.TransportDisposedIOException: Peer 
> (vm://localhost#69) disposed.
> 
> where the number after "localhost" is different every time.
> We do not experience this problem with topics.  We are using ActiveMQ as part 
> of an "embedded" configuration with Geronimo.
> I've done some debugging and the problem occurs at this line in the 
> ActiveMQMessageProducer.close() method:
> 
> this.session.asyncSendPacket(info.createRemoveCommand());
> 
> The queue itself is disposed properly in the dispose() method that is called 
> in the line before, but this sending of the asynchronous packet fails.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (GERONIMO-2880) TransportDisposedIOException occurs when trying to close ActiveMQ queue

2007-08-31 Thread Aman Nanner (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-2880?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12524101
 ] 

Aman Nanner commented on GERONIMO-2880:
---

This issue is occuring when we try to close a Queue.

{panel}
10:42:34,957 ERROR [Transaction] Unexpected exception rolling back [EMAIL 
PROTECTED]; continuing with rollback
javax.transaction.xa.XAException: Peer (vm://localhost#79) disposed.
at 
org.apache.activemq.TransactionContext.toXAException(TransactionContext.java:619)
at 
org.apache.activemq.TransactionContext.rollback(TransactionContext.java:420)
at 
org.apache.activemq.ra.LocalAndXATransaction.rollback(LocalAndXATransaction.java:127)
at 
org.apache.geronimo.transaction.manager.WrapperNamedXAResource.rollback(WrapperNamedXAResource.java:78)
at 
org.apache.geronimo.transaction.manager.TransactionImpl.rollbackResources(TransactionImpl.java:581)
at 
org.apache.geronimo.transaction.manager.TransactionImpl.rollback(TransactionImpl.java:475)
at 
org.apache.geronimo.transaction.manager.TransactionManagerImpl.rollback(TransactionManagerImpl.java:250)
at 
org.apache.geronimo.transaction.manager.TransactionManagerImpl$$FastClassByCGLIB$$14ee5fe0.invoke()
at net.sf.cglib.reflect.FastMethod.invoke(FastMethod.java:53)
at 
org.apache.geronimo.gbean.runtime.FastMethodInvoker.invoke(FastMethodInvoker.java:38)
at 
org.apache.geronimo.gbean.runtime.GBeanOperation.invoke(GBeanOperation.java:124)
at 
org.apache.geronimo.gbean.runtime.GBeanInstance.invoke(GBeanInstance.java:830)
at 
org.apache.geronimo.gbean.runtime.RawInvoker.invoke(RawInvoker.java:57)
at 
org.apache.geronimo.kernel.basic.RawOperationInvoker.invoke(RawOperationInvoker.java:35)
at 
org.apache.geronimo.kernel.basic.ProxyMethodInterceptor.intercept(ProxyMethodInterceptor.java:96)
at 
org.apache.geronimo.transaction.manager.XidImporter$$EnhancerByCGLIB$$abb1517c.rollback()
at 
org.apache.geronimo.transaction.GeronimoUserTransaction.rollback(GeronimoUserTransaction.java:74)
.
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
at 
org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56)
at 
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:525)
at 
org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:353)
at 
org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47)
at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at 
org.apache.catalina.authenticator.SingleSignOn.invoke(SingleSignOn.java:393)
at 
org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:563)
at 
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:261)
at 
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
at 
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:581)
at 
org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:595)
Caused by: javax.jms.JMSException: Peer (vm://localhost#79) disposed.
at 
org.apache.activemq.util.JMSExceptionSupport.create(JMSExceptionSupport.java:58)
at 
org.apache.activemq.ActiveMQConnection.syncSendPacket(ActiveMQConnection.java:1185)
at 
org.apache.activemq.TransactionContext.rollback(TransactionContext.java:409)
... 62 more
Caused by: org.apache.activemq.transport.TransportDisposedIOException: Peer 
(vm://localhost#79) disposed.
at 
org.apache.activemq.transport.vm.VMTransport.oneway(VMTransport.java:86)
at 
org.apache.activemq.transport.MutexTransport.oneway(MutexTransport.java:47)
at 
org.apache.activemq.transport.ResponseCorrelator.asyncRequest(ResponseCorrelator.java:69)
at 
org.apache.activemq.transport.ResponseCorrelator.request(ResponseCorrelator.java:74)
at 
org.apache.activemq.ActiveMQConnection.syncSendPacket(ActiveMQConnection.java:1175)
... 63 more
{panel}

> TransportDisposedIOException occurs when trying to close ActiveMQ queue
> ---
>
> Key: GERONIMO-2880
> URL: https://issues.apache.org/jira/

[jira] Commented: (GERONIMO-2880) TransportDisposedIOException occurs when trying to close ActiveMQ queue

2007-02-23 Thread Aman Nanner (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-2880?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12475606
 ] 

Aman Nanner commented on GERONIMO-2880:
---

Actually, I've now seen this issue with Topics now as well, specifically when 
calling the close() method on a TopicPublisher.

> TransportDisposedIOException occurs when trying to close ActiveMQ queue
> ---
>
> Key: GERONIMO-2880
> URL: https://issues.apache.org/jira/browse/GERONIMO-2880
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: ActiveMQ
>Affects Versions: 1.2
> Environment: Windows XP SP2
>Reporter: Aman Nanner
>
> I have discovered some problems with queues while running unittest in our own 
> J2EE app.
> After sending a message on a queue, when we try to call the close() method on 
> the queue, we get the following exception:
> 
> org.apache.activemq.transport.TransportDisposedIOException: Peer 
> (vm://localhost#69) disposed.
> 
> where the number after "localhost" is different every time.
> We do not experience this problem with topics.  We are using ActiveMQ as part 
> of an "embedded" configuration with Geronimo.
> I've done some debugging and the problem occurs at this line in the 
> ActiveMQMessageProducer.close() method:
> 
> this.session.asyncSendPacket(info.createRemoveCommand());
> 
> The queue itself is disposed properly in the dispose() method that is called 
> in the line before, but this sending of the asynchronous packet fails.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (GERONIMO-2880) TransportDisposedIOException occurs when trying to close ActiveMQ queue

2007-02-23 Thread Aman Nanner (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-2880?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12475424
 ] 

Aman Nanner commented on GERONIMO-2880:
---

Using queues with the embedded ActiveMQ server also produces a similar problem 
when trying to roll back a transaction:


13:05:23,561 ERROR [Transaction] Unexpected exception rolling back [EMAIL 
PROTECTED]; continuing with rollback
javax.transaction.xa.XAException: Peer (vm://localhost#67) disposed.
at 
org.apache.activemq.TransactionContext.toXAException(TransactionContext.java:609)
at 
org.apache.activemq.TransactionContext.rollback(TransactionContext.java:419)
at 
org.apache.activemq.ra.LocalAndXATransaction.rollback(LocalAndXATransaction.java:127)
at 
org.apache.geronimo.transaction.manager.WrapperNamedXAResource.rollback(WrapperNamedXAResource.java:78)
at 
org.apache.geronimo.transaction.manager.TransactionImpl.rollbackResources(TransactionImpl.java:584)
at 
org.apache.geronimo.transaction.manager.TransactionImpl.rollback(TransactionImpl.java:474)
at 
org.apache.geronimo.transaction.manager.TransactionManagerImpl.rollback(TransactionManagerImpl.java:276)
at 
org.apache.geronimo.transaction.manager.TransactionManagerImpl$$FastClassByCGLIB$$14ee5fe0.invoke()
at net.sf.cglib.reflect.FastMethod.invoke(FastMethod.java:53)
at 
org.apache.geronimo.gbean.runtime.FastMethodInvoker.invoke(FastMethodInvoker.java:38)
at 
org.apache.geronimo.gbean.runtime.GBeanOperation.invoke(GBeanOperation.java:122)
at 
org.apache.geronimo.gbean.runtime.GBeanInstance.invoke(GBeanInstance.java:820)
at 
org.apache.geronimo.gbean.runtime.RawInvoker.invoke(RawInvoker.java:57)
at 
org.apache.geronimo.kernel.basic.RawOperationInvoker.invoke(RawOperationInvoker.java:35)
at 
org.apache.geronimo.kernel.basic.ProxyMethodInterceptor.intercept(ProxyMethodInterceptor.java:96)
at 
org.apache.geronimo.transaction.manager.XidImporter$$EnhancerByCGLIB$$be1f3f2b.rollback()
at 
org.apache.geronimo.transaction.GeronimoUserTransaction.rollback(GeronimoUserTransaction.java:74)



Again, this issue does not occur when using Topics.

> TransportDisposedIOException occurs when trying to close ActiveMQ queue
> ---
>
> Key: GERONIMO-2880
> URL: https://issues.apache.org/jira/browse/GERONIMO-2880
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: ActiveMQ
>Affects Versions: 1.2
> Environment: Windows XP SP2
>Reporter: Aman Nanner
>
> I have discovered some problems with queues while running unittest in our own 
> J2EE app.
> After sending a message on a queue, when we try to call the close() method on 
> the queue, we get the following exception:
> 
> org.apache.activemq.transport.TransportDisposedIOException: Peer 
> (vm://localhost#69) disposed.
> 
> where the number after "localhost" is different every time.
> We do not experience this problem with topics.  We are using ActiveMQ as part 
> of an "embedded" configuration with Geronimo.
> I've done some debugging and the problem occurs at this line in the 
> ActiveMQMessageProducer.close() method:
> 
> this.session.asyncSendPacket(info.createRemoveCommand());
> 
> The queue itself is disposed properly in the dispose() method that is called 
> in the line before, but this sending of the asynchronous packet fails.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.