byte[] resp = baos.toByteArray();
System.out.println("RESPONSE:"+new String(resp));
ByteArrayInputStream bis = new ByteArrayInputStream(resp);
ResponseContext newRC = RequestResponseContextFactory.createResponseContext();
newRC.readResponse(bis);
element = (Element) newRC.getDocumentElement();
}
return element;
}