Ways to use rpc / encoded style in CXF

I know that CXF does not support the rpc / encoded WSDL style, and I am looking for a solution to get around this. I have to implement the rpc / encoded style web service implementation, the problem is that the service needs to be deployed in Apache Karaf 2.2.9 as an OSGi package that uses CXF 2.6.2 and I cannot implement rpc / encoded ws.

I am going to create another web service that will work in another container and will be created using Axis 1.4. It will work as a wrapper for the CXF web service that is deployed to Karaf.

I do not like this solution because there must be a different container. Maybe someone can offer me a solution how to make this work without another container? (If possible, at least).

+4
source share
1 answer

Glen has a tutorial for this:

http://www.jroller.com/gmazza/entry/calling_rpc_encoded_web_services

but it really is not so straightforward.

+2
source

Source: https://habr.com/ru/post/1447763/


All Articles