You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The class ProtocolHandler contains the following code to set the JMSXAppID and/or JMSXUserID properties if the client is configured to set them:
//set JMSXAppID if requested if (setJMSXAppID) {
message.setStringProperty(ConnectionMetaDataImpl.JMSXAppID,
jmsxAppID);
}
//set JMSXUserID if requested if (setJMSXUserID) {
message.setStringProperty(ConnectionMetaDataImpl.JMSXUserID,
jmsxUserID);
}
However if the message being sent was previously received then it appears (from looking at the code) the message properties will be in read-only mode and setStringProperty will throw a MessageNotWriteableException.
Affected Versions
[5.1 (RI-Bug-Fix)]
The text was updated successfully, but these errors were encountered:
The class ProtocolHandler contains the following code to set the JMSXAppID and/or JMSXUserID properties if the client is configured to set them:
However if the message being sent was previously received then it appears (from looking at the code) the message properties will be in read-only mode and setStringProperty will throw a MessageNotWriteableException.
Affected Versions
[5.1 (RI-Bug-Fix)]
The text was updated successfully, but these errors were encountered: