OMOutputFormat outputFormat = new OMOutputFormat();
outputFormat.setCharSetEncoding(MessageContext.DEFAULT_CHAR_SET_ENCODING);
ByteArrayOutputStream outStream = new ByteArrayOutputStream();
SOAPMessageFormatter formatter = new SOAPMessageFormatter();
formatter.writeTo(msgCtx, outputFormat, outStream, true);
outStream.flush();
outStream.close();
}