Package org.jibx.ws.codec

Examples of org.jibx.ws.codec.MediaType


   * @param soapAction
   */
  private void assertRequestProperties(MessageProperties properties, String contentType, String charset, String acceptType, String soapAction) throws Exception {
        assertNotNull(properties);
        assertEquals("SOAPAction: ", soapAction, properties.getProperty("SOAPAction"));
        assertEquals("ContentType: ", new MediaType(contentType), properties.getContentType());
        assertEquals("Charset: ", charset, properties.getCharset());
        assertEquals("Accept types length: ", 1, properties.getAcceptTypes().length);
        assertEquals("Accept: ", new MediaType(acceptType), properties.getAcceptTypes()[0]);
  }
View Full Code Here

TOP

Related Classes of org.jibx.ws.codec.MediaType

Copyright © 2018 www.massapicom. 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.