SOAPComparator soapComparator = new SOAPComparator();
//ignore elements that belong to the addressing namespace
soapComparator.addIgnorableNamespace("http://schemas.xmlsoap.org/ws/2004/08/addressing");
// ////////////////////////////////////////////////////
System.out.println("######################################################");
OMOutputImpl omOutput = new OMOutputImpl(System.out,false);
requiredMessageEnvelope.serializeWithCache(omOutput);
omOutput.flush();
System.out.println("");
System.out.println("-------------------------------------------------------");
OMOutputImpl omOutput1 = new OMOutputImpl(System.out,false);
replyMessageEnvelope.serializeWithCache(omOutput1);
omOutput1.flush();
System.out.println("");
System.out.println("`######################################################");
/////////////////////////////////////////////////////