Hi Bartosz, this error was coming after upgrade to 31. This error was coming due to a cxf jar in my deployment. i have removed it and was able to deploy.
I am getting below error after deployment of my war and when i try to access my url.
<soap:Envelope xmlns:soap="
http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><soap:Fault><faultcode>soap:VersionMismatch</faultcode><faultstring>A SOAP 1.2 message is not valid when sent to a SOAP 1.1 only endpoint.</faultstring></soap:Fault></soap:Body></soap:Envelope>'
how to make SOAP 1.2 end point. i am using @bindingType as @BindingType(value=javax.xml.ws.soap.SOAPBinding.SOAP12HTTP_BINDING) in my web service class. however i am getting only soap 1.1 only endpoint by container.
Thanks
--Vijay