Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm planning on using Apache NMS for ActiveMQ messaging, and am wondering what serialization method is going to be used on the objects I send? XML/Binary? What controls the serialization and how can I customize it?

Does anyone have experience doing this with C# objects? Are there any pitfalls that you know of?

share|improve this question

1 Answer

up vote 4 down vote accepted

The default is System.Runtime.Serialization.Formatters.Binary.BinaryFormatter for IObjectMessage.

You can set your own by e.g.

IObjectMessage m = session.CreateObjectMessage();

((ActiveMQObjectMessage)m).Formatter=new SoapFormatter();//Or any IFormatter

You'd need to set the formatter before accessing IObjectMessage.Body on the receiver side if you're not sending objects with the default BinaryFormatter.

If you wish, you can also send/receive IByteMessage/ITextMessage and serialize your objects to the messages yourself in any way you'd like.

share|improve this answer
Any good info on the backward compatibility of the binary format? What happens with a removed/added field? – TheSoftwareJedi Aug 31 '09 at 18:31
Seems in practice(in my limited experience atleat) missing fileds just get their default values. This serialization has nothing to do with NMS/ActiveMQ though. There's lots of questions regarding serialization on stackoverflow, poke around those. – nos Aug 31 '09 at 19:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.