ESBCOMP-123 Include XML prolog when sending XML requests through Jersey Client (JAX-RS)

master
David BRASSELY 2015-01-22 10:04:49 +01:00
parent efebfefda4
commit aaacd6a72a
1 changed files with 1 additions and 1 deletions

View File

@ -408,7 +408,7 @@ public class JbiMessageUtil {
public static String convertXmlToString(Source source, boolean stripNamespaces) throws Exception {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
Transformer transformer = TransformerFactory.newInstance().newTransformer();
transformer.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, "yes");
// transformer.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, "yes");
transformer.transform(source, new StreamResult(baos));
String xmlPayload = baos.toString();