}
public void testStreamMessage() throws Exception
{
log.info("+++ testStreamMessage");
StreamMessage sent = session.createStreamMessage();
sent.writeBoolean(true);
sent.writeByte((byte) 1);
byte[] testBytes = "Bytes".getBytes();
sent.writeBytes(testBytes);
sent.writeChar('c');
sent.writeShort((short) 31415);