272273274275276277278279280
} @Test public void testXmlUpdateInputStream() throws Exception { InputStream xmlis = new ByteArrayInputStream(sampleXml.getBytes()); client.send("vm://input-10-is", xmlis, null); FlowAssert.verify("process-order-update-is"); }
232233234235236237238
/** * @param data the input data * @return the response */ protected SecurityMasterResponseMessage toSecurityMasterResponseMessage(byte[] data) { return _fudgeContext.readObject(SecurityMasterResponseMessage.class, new ByteArrayInputStream(data)); }