Description
Comparing NMS with JMS. The IMapMessage interface in NMS is currently missing the ability to attach a byte array.
It would be good if the following methods could be added:
void SetBytes(string name, byte[] value)
void SetBytes(string name, byte[] value, int offset, int length)
byte[] GetBytes(string name)
The JMS MapMessage doc is here:
http://www.docjar.org/docs/api/javax/jms/MapMessage.html#setBytes%28String,%20byte%29