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

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

     [ 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