please help currently I\'m building a system that allowing the restful (jersey 1.12) to be invoked by some webservices (Axis2) the scenario is like this:
client --> w
Please add the following dependencies in your maven project which provides the implementation of the RuntimeDelegate
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-jaxrs</artifactId>
<version>2.7.18</version>
</dependency>
The com.sun.ws.rs.ext package, and therefore RuntimeDelegateImpl, is contained in the jersey client jar. If you're using maven then add this dependency to your pom.xml (here I'm using jersey client v1.12):
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-client</artifactId>
<version>1.12</version>
</dependency>