Hi, I'm trying to switch from CXF 2.7.X to 3.1.5 (since the older version has a compatibility issue with Spring 4.2).
Before changing the version, I could use an URL to access the JAXWS services, for example... http://localhost:8080/webservices/myService/someMethod?someParameter=1&someOtherParameter= ...which would call the "someMethod" of the "myService" with the two parameters. Unfortunately, it stopped working with 3.1.5... <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <soap:Fault> <faultcode>soap:Server</faultcode> <faultstring>No binding operation info while invoking unknown method with params unknown.</faultstring> </soap:Fault> </soap:Body> </soap:Envelope> Does anyone have a good idea what I have to change to make it work again? I simply replaced some dependencies, the web.xml is still unchanged (and pretty much consists of a CXFServlet plus some Spring context configuration). Regards, Flo
