I have a simple POC for my problem. I have a producer and a consumer to read and write ObjectMessage to Qpid queue. All that the Dummy object has, is a String. The Dummy object is Serializable as well. Producer seems to be writing the object to the queue without throwing an error but the Consumer which is listening to the queue, is not able to de-serialize the Dummy object.
OnMessage (on receiving the message), a simple Dummy dummyObj = (Dummy)((JMSObjectMessage)arg0).getObject(); throws the following error –
javax.jms.MessageFormatException: Could not deserialize message: java.io.EOFException
at org.apache.qpid.client.message.JMSObjectMessage.getObject(JMSObjectMessage.java:146)
at producer.QpidConsumer.onMessage(QpidConsumer.java:81)
I have also checked that the Dummy object is getting serialized/deserialized without any problem in a simple POC to test serialization. I don’t know what I am missing.
I am using Qpid 0.6 and using JNDI to load Qpid context. Please help.
Thanks.
ObjectMessage objMessage = session.createObjectMessage(new String("XYZ"));myMsgProducer.send(objMessage);– Narita Sep 5 '11 at 4:56