I am using IBM WebSphere Message Broker to process a JMS message. My message contains a Java object wrapped inside the JMSMessage (Object Message). I couldn't use any other parser other than BLOB in input node. How can I fetch the object from the BLOB domain in JMS Message using JavaCoumpute node? Please help me resolving this.
Asked
Active
Viewed 648 times
1
-
1Did you try to access it through "InputRoot.BLOB.BLOB"? – J J Nov 19 '11 at 22:06
-
I would do this differently... Is your object very big? If not, I suggest you use a message of type TextMessage where you can use JAXB to marshall or unmarshall your objects – Pat B Jan 20 '12 at 14:24