12

I am consuming a webservice soa, with netbeans (jax-ws) i use netbeans auto generate client, and all run fine, but i see that the wsdl is always downloading while the client is running.

In production i don't want expose the wsdl, and i am trying to modify the client for don't require wsdl, all my intends are wrong, i find this:

WebService_Service svc = new WebService_Service(
  null,
  new QName("http://www.example.com/ws", "WebService"));
WebService port = svc.getPort(WebService.class);
BindingProvider bindingProvider = (BindingProvider) port;
bindingProvider.getRequestContext()
  .put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY,
    "http://www.example.com/real_endpoint_url_goes_here");

but when the first line is executed i found this exception:

Message: El contenido no está permitido en el prólogo.
    at com.sun.xml.internal.ws.streaming.XMLStreamReaderUtil.wrapException(Unknown Source)
    at com.sun.xml.internal.ws.streaming.XMLStreamReaderUtil.next(Unknown Source)
    at com.sun.xml.internal.ws.streaming.XMLStreamReaderUtil.nextContent(Unknown Source)
    at com.sun.xml.internal.ws.streaming.XMLStreamReaderUtil.nextElementContent(Unknown Source)
    at com.sun.xml.internal.ws.wsdl.parser.RuntimeWSDLParser.hasWSDLDefinitions(Unknown Source)
    at com.sun.xml.internal.ws.wsdl.parser.RuntimeWSDLParser.parse(Unknown Source)
    at com.sun.xml.internal.ws.wsdl.parser.RuntimeWSDLParser.parse(Unknown Source)
    at com.sun.xml.internal.ws.client.WSServiceDelegate.parseWSDL(Unknown Source)
    at com.sun.xml.internal.ws.client.WSServiceDelegate.<init>(Unknown Source)
    at com.sun.xml.internal.ws.client.WSServiceDelegate.<init>(Unknown Source)
    at com.sun.xml.internal.ws.spi.ProviderImpl.createServiceDelegate(Unknown Source)
    at javax.xml.ws.Service.<init>(Unknown Source)

Any idea to ignore wsdl?

Paul Vargas
  • 41,222
  • 15
  • 102
  • 148
mls_dev
  • 511
  • 2
  • 6
  • 21

4 Answers4

22

There are several ways, of which I will tell you two:

  1. Use a WSDL document file locally

    Save a copy of the WSDL document file and the schemma files to your project.

    ClassLoader classloader = Thread.currentThread().getContextClassLoader();
    URL wsdlLocation = classloader.getResource("MyHelloService.wsdl");
    QName serviceName= new QName("http://test.com/", "MyHelloService");
    
    MyHelloService service = new MyHelloService(wsdlLocation, serviceName);
    service.sayHello("Test");
    

    You may combine the WSDL document file with the schema files.

  2. Without a WSDL document file

    This solution requires the client generated.

    QName qname = new QName("http://thenamespace", "FooService");
    FooService service = new FooService(null, qname); // null for ignore WSDL
    Foo port = service.getFooPort();
    BindingProvider bindingProvider = (BindingProvider) port;
    bindingProvider.getRequestContext()
        .put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY,
        "http://foo.com/soap/fooBean");
    
    // Use the service
    String result = port.doSomething(param);
    
Paul Vargas
  • 41,222
  • 15
  • 102
  • 148
  • Thaks for the answer i am trying to use the way number 2, but i have the exception to the first post (the question) – mls_dev Nov 07 '13 at 07:12
  • I tried to summarise this all up in a post here: https://medium.com/@nieldw/setting-the-target-endpoint-url-on-java-soap-web-service-clients-d5079da7816 – Niel de Wet Feb 28 '18 at 16:35
  • I had a similar problem and wanted to combine this with Dispatch, which didn't work for Apache CXF in this case. What helped a lot was some old IBM docu: https://www.ibm.com/support/knowledgecenter/en/SSEQTP_8.5.5/com.ibm.websphere.base.doc/ae/twbs_jaxwsdynclient.html – Ice09 Dec 20 '18 at 09:35
  • I tried the 2nd solution but it doesn't ignore the wsdl. It attempts to use the wsdl from it's original location from which I generated the classes with wsimport. Ended up using the 1st solution and saving the wsdl in the source code – Alexandru Severin Aug 29 '22 at 15:08
6

Finally i use the CXF libraries and i achieve use the Paul Vargas answer:

Without a WSDL document file

This solution requires the client generated.

QName qname = new QName("http://thenamespace", "FooService");
FooService service = new FooService(null, qname); // null for ignore WSDL
Foo port = service.getFooPort();
BindingProvider bindingProvider = (BindingProvider) port;
bindingProvider.getRequestContext()
    .put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY,
    "http://foo.com/soap/fooBean");

// Use the service
String result = port.doSomething(param);

Using standard jaw-ws, this solution don't work, CXF is necessary.

mls_dev
  • 511
  • 2
  • 6
  • 21
1

I needed something like this, too.

In my case, I had put a dummy wsdl without endpoint address inside my web app classpath. After that, I set a valid address at runtime, like this:

    String WSDL = "/config/ws/Main_default.wsdl";
    Main service = new Main(Main.class.getResource(WSDL), new QName(
            "http://www.example.com/", "Main"));
    MainWS port = service.getMainWSPort();

    BindingProvider bindingProvider = (BindingProvider) port;
    bindingProvider.getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY,
            "http://app.example.com/ws/services/main");

    Object result = port.someMethod("some param");
0

This exception happens while there is a parse error in your xml and there is something wrong at the specified row and column. Check your xml

constantlearner
  • 5,157
  • 7
  • 42
  • 64
  • Yes, i think that the exception ocurrs because i am pass null to service constructor and it try to download the wsdl and not find anything. but i don't know how force client to not download the wsdl – mls_dev Nov 06 '13 at 19:16
  • try using no arg constructor WebService_Service svc = new WebService_Service() – constantlearner Nov 06 '13 at 19:20
  • thaks for the answer, but in this case, default constructor call to wsdl because have inside one reference to it. i try to deleted the inside reference to wsdl, but the problem persist. it s not posible use client without wsdl? – mls_dev Nov 06 '13 at 19:28
  • Are you using cxf or axis?With cxf the mentioned method works – constantlearner Nov 06 '13 at 19:41
  • i am using the default libraries that comes with netbeans (jax-ws) i follow this tutorial: http://martcode.com/tipsGallery/Webservice-Client-2-min-using-Netbeans.php?id=42 – mls_dev Nov 06 '13 at 19:53