[ 
https://issues.apache.org/jira/browse/QPID-7544?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Keith Wall updated QPID-7544:
-----------------------------
    Fix Version/s:     (was: qpid-java-broker-7.0.0)
                   qpid-java-client-0-x-6.3.0

> [Java Client][AMQP 0-10] After resending a previously sent Message, the 
> JMSMessageId is not updated
> ---------------------------------------------------------------------------------------------------
>
>                 Key: QPID-7544
>                 URL: https://issues.apache.org/jira/browse/QPID-7544
>             Project: Qpid
>          Issue Type: Bug
>          Components: Java Client
>            Reporter: Rob Godfrey
>            Assignee: Rob Godfrey
>             Fix For: qpid-java-client-0-x-6.3.0
>
>
> When a Message object is sent by the JMS client the JMSMessageId should be 
> updated with a new message id (unless message id generation has been turned 
> off).
> When using the 0-10 protocol, however, the following code will fail
> {code}
>     Message msg = session.createBytesMessage();
>     producer.send(msg);
>     String firstId = msg.getJMSMessageID();
>     producer.send(msg);
>     assertFalse(firstId.equals(msg.getJMSMessageID()); 
> {code}
> In fact the send sending of the message does result in a different message-id 
> being sent over the wire, but this new message id is not exposed in the JMS 
> message.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to