You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@qpid.apache.org by "Hiram Chirino (JIRA)" <ji...@apache.org> on 2012/11/21 21:39:59 UTC

[jira] [Created] (QPID-4455) Queue browsers were not returning jms messages

Hiram Chirino created QPID-4455:
-----------------------------------

             Summary: Queue browsers were not returning jms messages
                 Key: QPID-4455
                 URL: https://issues.apache.org/jira/browse/QPID-4455
             Project: Qpid
          Issue Type: Bug
          Components: Java Client
            Reporter: Hiram Chirino


The following test case is failing:

            MessageProducer p = session.createProducer(queue);

            TextMessage message = session.createTextMessage();
            message.setText("hello");
            p.send(message);

            QueueBrowser browser = session.createBrowser(queue);
            Enumeration enumeration = browser.getEnumeration();
            while (enumeration.hasMoreElements()) {
                Message m = (Message) enumeration.nextElement();
                assertTrue(m instanceof TextMessage);
            }


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@qpid.apache.org
For additional commands, e-mail: dev-help@qpid.apache.org


[jira] [Resolved] (QPID-4455) [AMQP 1.0 JMS Client] Queue browsers were not returning jms messages

Posted by "Rob Godfrey (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/QPID-4455?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Rob Godfrey resolved QPID-4455.
-------------------------------

       Resolution: Fixed
    Fix Version/s: 0.21
    
> [AMQP 1.0 JMS Client] Queue browsers were not returning jms messages
> --------------------------------------------------------------------
>
>                 Key: QPID-4455
>                 URL: https://issues.apache.org/jira/browse/QPID-4455
>             Project: Qpid
>          Issue Type: Bug
>          Components: Java Client
>            Reporter: Hiram Chirino
>            Assignee: Rob Godfrey
>             Fix For: 0.21
>
>         Attachments: QPID-4455.patch
>
>
> The following test case is failing:
>             MessageProducer p = session.createProducer(queue);
>             TextMessage message = session.createTextMessage();
>             message.setText("hello");
>             p.send(message);
>             QueueBrowser browser = session.createBrowser(queue);
>             Enumeration enumeration = browser.getEnumeration();
>             while (enumeration.hasMoreElements()) {
>                 Message m = (Message) enumeration.nextElement();
>                 assertTrue(m instanceof TextMessage);
>             }

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@qpid.apache.org
For additional commands, e-mail: dev-help@qpid.apache.org


[jira] [Updated] (QPID-4455) [AMQP 1.0 JMS Client] Queue browsers were not returning jms messages

Posted by "Justin Ross (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/QPID-4455?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Justin Ross updated QPID-4455:
------------------------------

    Fix Version/s: 0.20
    
> [AMQP 1.0 JMS Client] Queue browsers were not returning jms messages
> --------------------------------------------------------------------
>
>                 Key: QPID-4455
>                 URL: https://issues.apache.org/jira/browse/QPID-4455
>             Project: Qpid
>          Issue Type: Bug
>          Components: Java Client
>            Reporter: Hiram Chirino
>            Assignee: Rob Godfrey
>             Fix For: 0.20, 0.21
>
>         Attachments: QPID-4455.patch
>
>
> The following test case is failing:
>             MessageProducer p = session.createProducer(queue);
>             TextMessage message = session.createTextMessage();
>             message.setText("hello");
>             p.send(message);
>             QueueBrowser browser = session.createBrowser(queue);
>             Enumeration enumeration = browser.getEnumeration();
>             while (enumeration.hasMoreElements()) {
>                 Message m = (Message) enumeration.nextElement();
>                 assertTrue(m instanceof TextMessage);
>             }

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@qpid.apache.org
For additional commands, e-mail: dev-help@qpid.apache.org


[jira] [Updated] (QPID-4455) [AMQP 1.0 JMS Client] Queue browsers were not returning jms messages

Posted by "Rob Godfrey (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/QPID-4455?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Rob Godfrey updated QPID-4455:
------------------------------

    Summary: [AMQP 1.0 JMS Client] Queue browsers were not returning jms messages  (was: Queue browsers were not returning jms messages)
    
> [AMQP 1.0 JMS Client] Queue browsers were not returning jms messages
> --------------------------------------------------------------------
>
>                 Key: QPID-4455
>                 URL: https://issues.apache.org/jira/browse/QPID-4455
>             Project: Qpid
>          Issue Type: Bug
>          Components: Java Client
>            Reporter: Hiram Chirino
>         Attachments: QPID-4455.patch
>
>
> The following test case is failing:
>             MessageProducer p = session.createProducer(queue);
>             TextMessage message = session.createTextMessage();
>             message.setText("hello");
>             p.send(message);
>             QueueBrowser browser = session.createBrowser(queue);
>             Enumeration enumeration = browser.getEnumeration();
>             while (enumeration.hasMoreElements()) {
>                 Message m = (Message) enumeration.nextElement();
>                 assertTrue(m instanceof TextMessage);
>             }

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@qpid.apache.org
For additional commands, e-mail: dev-help@qpid.apache.org


[jira] [Assigned] (QPID-4455) [AMQP 1.0 JMS Client] Queue browsers were not returning jms messages

Posted by "Rob Godfrey (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/QPID-4455?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Rob Godfrey reassigned QPID-4455:
---------------------------------

    Assignee: Rob Godfrey
    
> [AMQP 1.0 JMS Client] Queue browsers were not returning jms messages
> --------------------------------------------------------------------
>
>                 Key: QPID-4455
>                 URL: https://issues.apache.org/jira/browse/QPID-4455
>             Project: Qpid
>          Issue Type: Bug
>          Components: Java Client
>            Reporter: Hiram Chirino
>            Assignee: Rob Godfrey
>             Fix For: 0.21
>
>         Attachments: QPID-4455.patch
>
>
> The following test case is failing:
>             MessageProducer p = session.createProducer(queue);
>             TextMessage message = session.createTextMessage();
>             message.setText("hello");
>             p.send(message);
>             QueueBrowser browser = session.createBrowser(queue);
>             Enumeration enumeration = browser.getEnumeration();
>             while (enumeration.hasMoreElements()) {
>                 Message m = (Message) enumeration.nextElement();
>                 assertTrue(m instanceof TextMessage);
>             }

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@qpid.apache.org
For additional commands, e-mail: dev-help@qpid.apache.org


[jira] [Updated] (QPID-4455) Queue browsers were not returning jms messages

Posted by "Hiram Chirino (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/QPID-4455?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Hiram Chirino updated QPID-4455:
--------------------------------

    Attachment: QPID-4455.patch

attaching possible fix.
                
> Queue browsers were not returning jms messages
> ----------------------------------------------
>
>                 Key: QPID-4455
>                 URL: https://issues.apache.org/jira/browse/QPID-4455
>             Project: Qpid
>          Issue Type: Bug
>          Components: Java Client
>            Reporter: Hiram Chirino
>         Attachments: QPID-4455.patch
>
>
> The following test case is failing:
>             MessageProducer p = session.createProducer(queue);
>             TextMessage message = session.createTextMessage();
>             message.setText("hello");
>             p.send(message);
>             QueueBrowser browser = session.createBrowser(queue);
>             Enumeration enumeration = browser.getEnumeration();
>             while (enumeration.hasMoreElements()) {
>                 Message m = (Message) enumeration.nextElement();
>                 assertTrue(m instanceof TextMessage);
>             }

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@qpid.apache.org
For additional commands, e-mail: dev-help@qpid.apache.org


[jira] [Commented] (QPID-4455) [AMQP 1.0 JMS Client] Queue browsers were not returning jms messages

Posted by "Justin Ross (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/QPID-4455?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13503880#comment-13503880 ] 

Justin Ross commented on QPID-4455:
-----------------------------------

http://svn.apache.org/viewvc?view=revision&revision=1412280

Patch reviewed by Rob.  Approved for 0.20.
                
> [AMQP 1.0 JMS Client] Queue browsers were not returning jms messages
> --------------------------------------------------------------------
>
>                 Key: QPID-4455
>                 URL: https://issues.apache.org/jira/browse/QPID-4455
>             Project: Qpid
>          Issue Type: Bug
>          Components: Java Client
>            Reporter: Hiram Chirino
>            Assignee: Rob Godfrey
>             Fix For: 0.20, 0.21
>
>         Attachments: QPID-4455.patch
>
>
> The following test case is failing:
>             MessageProducer p = session.createProducer(queue);
>             TextMessage message = session.createTextMessage();
>             message.setText("hello");
>             p.send(message);
>             QueueBrowser browser = session.createBrowser(queue);
>             Enumeration enumeration = browser.getEnumeration();
>             while (enumeration.hasMoreElements()) {
>                 Message m = (Message) enumeration.nextElement();
>                 assertTrue(m instanceof TextMessage);
>             }

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@qpid.apache.org
For additional commands, e-mail: dev-help@qpid.apache.org