.parse(configStream);
assertNotNull(responseCollection);
// Now for the writing part
ByteArrayOutputStream baos = new ByteArrayOutputStream();
WSTrustResponseWriter rstrWriter = new WSTrustResponseWriter(baos);
rstrWriter.write(responseCollection);
byte[] data = baos.toByteArray();
Logger.getLogger(WSTrustRenewTargetParsingTestCase.class).debug(new String(data));
Document doc = DocumentUtil.getDocument(new ByteArrayInputStream(data));
JAXPValidationUtil.validate(DocumentUtil.getNodeAsStream(doc));