Rob Godfrey created QPID-7544:
---------------------------------

             Summary: [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();
    produce.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: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to