[jboss-user] [JBossWS] - Re: What controls the SOAP version used in JBoss

alessio.soldano@jboss.com do-not-reply at jboss.com
Mon Jun 30 08:18:11 EDT 2008


You can also use the @BindingType annotation.

See the following constants:

  | /**
  |     * A constant representing the identity of the SOAP 1.1 over HTTP binding.
  |     */
  |    public static final String SOAP11HTTP_BINDING = "http://schemas.xmlsoap.org/wsdl/soap/http";
  | 
  |    /**
  |     * A constant representing the identity of the SOAP 1.2 over HTTP binding.
  |     */
  |    public static final String SOAP12HTTP_BINDING = "http://www.w3.org/2003/05/soap/bindings/HTTP/";
  | 
  |    /**
  |     * A constant representing the identity of the SOAP 1.1 over HTTP binding
  |     * with MTOM enabled by default.
  |     */
  |    public static final String SOAP11HTTP_MTOM_BINDING = "http://schemas.xmlsoap.org/wsdl/soap/http?mtom=true";
  | 
  |    /**
  |     * A constant representing the identity of the SOAP 1.2 over HTTP binding
  |     * with MTOM enabled by default.
  |     */
  |    public static final String SOAP12HTTP_MTOM_BINDING = "http://www.w3.org/2003/05/soap/bindings/HTTP/?mtom=true";
  | 

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4161487#4161487

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4161487



More information about the jboss-user mailing list