Uploaded image for project: 'JBoss Web Services'
  1. JBoss Web Services
  2. JBWS-3593

multipart/related messages exchanged for @MTOM annotated endpoint even if no attachment is included

    XMLWordPrintable

Details

    • Bug
    • Resolution: Won't Do
    • Major
    • None
    • jbossws-cxf-4.0.2, jbossws-native-4.0.2
    • jbossws-cxf, jbossws-native
    • None

    Description

      On JBoss AS 7.1.1, with the following service implementation:

      @WebService(...)
      @javax.xml.ws.BindingType (value=javax.xml.ws.soap.SOAPBinding.SOAP12HTTP_MTOM_BINDING)
      public class SEIImpl {
      ...
      public DataHandler getBin() {...} /* maps to a type="xs:base64Binary" in wsdl */
      public List<String> getString(){...} /* maps to sequence of String in wsdl */
      ...
      }
      

      With the default jbossws-cxf, the responses are:

      • for getString() method
        Content-Type: multipart/related; type="application/xop+xml"; ...
      • for getBin() method
        Content-Type: multipart/related; type="application/xop+xml"; ...

      -> both responses are MTOM/XOP modified ! The getString() response should not.

      With jbossws-native (after the jbossws stack switching) , the responses are the expected ones:

      • for getString() method
        Content-Type: text/xml;charset=UTF-8 <env:Envelope .... text content ..../env:Envelope>
      • for getBin() method
        Content-Type: multipart/related; type="application/xop+xml"; ...

      Best regards,

      Note: same behaviour with @javax.xml.ws.soap.MTOM or SOAP11HTTP_MTOM_BINDING

      Attachments

        Activity

          People

            rhn-support-asoldano Alessio Soldano
            jbossalecuser A l e c C R E S T A N (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: