[esb-issues] [JBoss JIRA] Created: (JBESB-1095) make DefaultJMSPropertiesSetter set the JMSCorrelationID

Daniel Bevenius (JIRA) jira-events at lists.jboss.org
Thu Sep 27 08:54:44 EDT 2007


make DefaultJMSPropertiesSetter set the JMSCorrelationID 
---------------------------------------------------------

                 Key: JBESB-1095
                 URL: http://jira.jboss.com/jira/browse/JBESB-1095
             Project: JBoss ESB
          Issue Type: Task
      Security Level: Public (Everyone can see)
          Components: Rosetta
            Reporter: Daniel Bevenius
         Assigned To: Daniel Bevenius
            Priority: Minor
             Fix For: 4.2.1 IR1


add a setJMSCorrelationID method and add a call to that method in setJMSProperties:
public void setJMSProperties( final org.jboss.soa.esb.message.Message fromESBMessage , final Message toJMSMessage ) throws JMSException 
{ 	
	setJMSMessageID( fromESBMessage, toJMSMessage );
	setJMSCorrelationID( fromESBMessage,toJMSMessage );
	setJMSExpiration( fromESBMessage,toJMSMessage );
	setProperties( fromESBMessage, toJMSMessage );
}
This is will let clients that have set a custom JMS correlation id, have that id passed along when the JMS Message leaves the ESB. 
This was need because of the following bug in JBM : http://jira.jboss.org/jira/browse/JBMESSAGING-1063. This bug has now been fixed but as we are not using the latest version of JBM yet this might be needed by other users.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the esb-issues mailing list