}
public void writeBytes(byte[] value, int offset, int length) throws JMSException
{
if (bodyReadOnly)
throw new MessageNotWriteableException("The message body is readonly");
bodyChange();
((StreamMessage)message).writeBytes(value, offset, length);
}