This content has been marked as final.
Show 2 replies
-
1. Re: Problem with PHP - maybe MIME?
dkulp_dkulp May 18, 2009 9:52 AM (in response to ee7arh)It SOUNDs like one of two things:
1) You have MTOM enabled. Usually this is via config somehow, but can also be enabled via an @MTOM annotation.
2) The WSDL that is used contains a MIME binding and thus Soap w/ attachments is turned on.
Normally, CXF doesn't put the response into MIME form unless one of the above is true.
-
2. Re: Problem with PHP - maybe MIME?
ee7arh May 18, 2009 10:46 AM (in response to ee7arh)Hi,
Thanks a lot, mtom was enabled on the jaxws endpoint. I disabled it and now it is as expected:
<jaxws:binding>
<soap:soapBinding mtomEnabled="false" version="1.2"/>
</jaxws:binding>
org.apache.cxf.interceptor.LoggingOutInterceptor INFO - Outbound Message
-
ID: 2
Encoding: UTF-8
Content-Type: application/soap+xml
Headers: {}
Payload:
BRegards
Andrew