You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@activemq.apache.org by "Lukasz Zielinski (JIRA)" <ji...@apache.org> on 2009/09/09 14:04:13 UTC

[jira] Issue Comment Edited: (AMQ-2225) PooledConnection obtaind from PooledConnectionFactory overwrites ExceptionListener

    [ https://issues.apache.org/activemq/browse/AMQ-2225?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=54094#action_54094 ] 

Lukasz Zielinski edited comment on AMQ-2225 at 9/9/09 5:03 AM:
---------------------------------------------------------------

So as I understand client code using PooledConnectionFactory (PCF) by means of ConnectionFactory interface must be aware that PCF is involved. Nice.

      was (Author: zieluuuu):
    So as I understand client code using PooledConnectionFactory (PCF) must be aware that PCF is involved. Nice.
  
> PooledConnection obtaind from PooledConnectionFactory overwrites ExceptionListener
> ----------------------------------------------------------------------------------
>
>                 Key: AMQ-2225
>                 URL: https://issues.apache.org/activemq/browse/AMQ-2225
>             Project: ActiveMQ
>          Issue Type: Bug
>          Components: Broker
>    Affects Versions: 5.2.0
>            Reporter: Lukasz Zielinski
>            Priority: Minor
>             Fix For: 5.4.0
>
>
> When multiple connections are obtained from PooledConnectionFactory and ExceptionListeners are set for them only one ExceptionListener will be notified about connection problems. Issue is caused by overwriting listeners in shared connection.
> Test case based on http://svn.apache.org/viewvc/activemq/trunk/activemq-pool/src/test/java/org/apache/activemq/pool/PooledTopicPublisherTest.java?view=markup
> public void testSetGetExceptionListener2() throws Exception {
>         PooledConnectionFactory pcf = new PooledConnectionFactory();
>         pcf.setConnectionFactory(new ActiveMQConnectionFactory("vm://test"));
>         TopicConnection conn1 = (TopicConnection) pcf.createConnection();
>         ExceptionListener list1 = new ExceptionListener() {
>             public void onException(JMSException exception) {
>             }
>         };
>         conn1.setExceptionListener(list1);
>         TopicConnection conn2 = (TopicConnection) pcf.createConnection();
>         ExceptionListener list2 = new ExceptionListener() {
>             public void onException(JMSException exception) {
>             }
>         };
>         conn2.setExceptionListener(list2);
>         assertEquals(list1, conn1.getExceptionListener());//this assertion will fail
>         assertEquals(list2, conn2.getExceptionListener());//this assertion will pass
>         assertEquals(list2, conn1.getExceptionListener());// THE PROBLEM - this will pass
> } 

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