Package org.jboss.ws.core.soap.attachment

Examples of org.jboss.ws.core.soap.attachment.MultipartRelatedXOPEncoder.writeTo()


      MultipartRelatedXOPEncoder mrxe = new MultipartRelatedXOPEncoder( (SOAPMessageImpl) msg1);
      mrxe.encodeMultipartRelatedMessage();
     
      ByteArrayOutputStream out = new ByteArrayOutputStream();
      mrxe.writeTo(out);

      if ( ! out.toString().contains("Content-Type: application/xop+xml; charset=UTF-8; type=\"text/xml\""))
         fail("Content-Type does not contain charset=UTF-8");                
   }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.