149150151152153154155156157158159
msg.setConnection(connection); Object obj = null; try { while ((obj = streamMessage.readObject()) != null) { msg.writeObject(obj); } } catch (MessageEOFException e) { // if an end of message stream as expected } catch (JMSException e) { }
147148149150151152153154155156157
153154155156157158159160161162163