Customer Portal

Web services in 2.9

Comments 2

  • Avatar
    avackova
    0
    Comment actions Permalink
    Hello,
    since version 3.0 CloverETL contains graph RealWorldExamples/graph/graphWebServices.grf, that demonstrates usage of WebserviceClient component. You can download it from source forge page.
    Are you able to configure the component manually?
    Then, when running such graph, CloverETL would be more "talkative" and print out the real reason.
  • Avatar
    julrych
    0
    Comment actions Permalink
    Hi,

    I am not sure that the two error messages you are getting in Glassfish and CloverETL are related. The reason is that getting the list of operations from wsdl does not actually send any ws request to the server. It just downloads webservice description (wsdl) via http or https protocol.

    Can you check your wsdl URL? It typically ends in ?wsdl or ?WSDL. In your case it would be [url]http;//localhost:8080/riskpro-web/services/Interfacing?wsdl[/url] or [url]http;//localhost:8080/riskpro-web/services/Interfacing?WSDL[/url]. One of the ways to make sure that the URL is correct is to put it into your web browser. You should receive back an XML file starting with something like:
    <?xml version="1.0" encoding="utf-8"?>
    <wsdl:definitions
    xmlns:s="http://www.w3.org/2001/XMLSchema"
    xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
    xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/"
    xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
    <wsdl:types>
    ...

Please sign in to leave a comment.