I have a web service that I have JAX-WS generated client bindings as below:
// web service client generated by JAX-WS
@WebServiceClient( ... )
public class WebService_Service extends Service {
public WebService_Service(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
WebService getWebServiceSOAP() {
// ...
}
}
I want to be able to create an instance of this that points to a remote service like:
WebService_Service svc = new WebService_Service(
new URL("http://www.example.com/ws?wsdl"),
new QName("http://www.example.com/ws", "WebService"));
But that downloads the WSDL from http://www.example.com/ws?wsdl
which I don't want to do.
Is there a way to stop the downloading of that WSDL, but still point to that same endpoint?
I had the same problem and I solved this, but I can't reveal it with your sample, because it depends on the wsdl.
Here is my code, track the solution:
I resolved this by specifying null for the WSDL URL in the client, as well as specifying the endpoint address explicitly:
See: http://shrubbery.homeip.net/c/display/W/Consuming+a+Web+Service+with+Java+6+and+JAX-WS#ConsumingaWebServicewithJava6andJAX-WS-IgnoringtheWSDLCompletely
The WSDL files might contain configuration options that the generated stubs don't contain, so they are needed at runtime. You can provide them locally in your class path.
The following maven pom.xml worked for me after placing the WSDL files of the service I'm using into my
${basedir}\src\main\resources\META-INF\wsdl
folder:At runtime, the wsdl files will be loaded from the class path.