Migration Guide

IBMStreams com.ibm.streamsx.jms Toolkit > com.ibm.streamsx.jms 2.0.0 > Migration Guide

If you have been using an older version of the JMS toolkit the following information will help you to migrate to the newer version.

Migrating to streamsx.jms v2.0.0

  • Parameters whose name ended in "AttrName" now end in "AttributeName". Simply renaming such parameters will make your Streams application compile clean again.
  • The parameter 'jmsHeaderProperties' is not a single string anymore, but a list of strings instead. If your configuration has been similar to the following line:
    jmsHeaderProperties : "propertyName1/streamsAttributeName1/typeSpecifier1,propertyName2/streamsAttributeName2/typeSpecifier2,..." ;
    
    Change it into this format:
    jmsHeaderProperties : "propertyName1/streamsAttributeName1/typeSpecifier1","propertyName2/streamsAttributeName2/typeSpecifier2","..." ;