think your service is set to use MTOM encoding,MTOM is set to Always. and the client is set to Optional. Since it is the client that makes the first request it does not optionally turns on the MTOM encoding but your
service method requires it. You need to programatically set MTOM enconding to On
when you access method.
i.e. if the response is non-MTOM like a SOAP fault, tell the proxy
we don't really need MTOM.
service method requires it. You need to programatically set MTOM enconding to On
when you access method.
i.e. if the response is non-MTOM like a SOAP fault, tell the proxy
we don't really need MTOM.