709710711712713714715716717718719
throws IOException, JMSException { BytesMessageImpl bytes = new BytesMessageImpl(); if (is == null) { bytes.reset(); return bytes; } int data;
720721722723724725726727728729730
while ((data = is.read()) >= 0) { bytes.writeByte((byte) data); } bytes.reset(); return bytes; } /**