You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@qpid.apache.org by "ASF subversion and git services (JIRA)" <ji...@apache.org> on 2016/12/02 17:04:58 UTC

[jira] [Commented] (QPID-7544) [Java Client][AMQP 0-10] After resending a previously sent Message, the JMSMessageId is not updated

    [ https://issues.apache.org/jira/browse/QPID-7544?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15715660#comment-15715660 ] 

ASF subversion and git services commented on QPID-7544:
-------------------------------------------------------

Commit 1772376 from [~k-wall] in branch 'java/trunk'
[ https://svn.apache.org/r1772376 ]

QPID-7544: [Java Client] [0-9] Message resent after setDisableMessageID(true) should not have a JMSMessageID

> [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-6.2
>
>
> 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.4#6332)

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