Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi guys,
I'm trying to test a Data Service from soapUI and it seems that the generated WSDL is malformed :
ERROR:javax.wsdl.WSDLException: WSDLException (at /HTML): faultCode=INVALID_WSDL: Expected element '{http://schemas.xmlsoap.org/wsdl/}definitions'.
My data service is quite simple :
tESBProdiverRequest --> tESBProdiverResponse
All default component parameters, nothing configure..
Thanks,
Bahaaldine
<DEFINITIONS WSDL="http://schemas.xmlsoap.org/wsdl/" name="LOCALPROJECT_ProviderJobFirstRequestResponse" targetnamespace="http://talend.org/esb/service/job">
<TYPES>
<SCHEMA XSD="http://www.w3.org/2001/XMLSchema" attributeformdefault="unqualified" elementformdefault="qualified" targetnamespace="http://talend.org/esb/service/job">
<ELEMENT name="invokeInput" nillable="true" type="xsd:anyType"></ELEMENT>
<ELEMENT name="invokeOutput" nillable="true" type="xsd:anyType"></ELEMENT>
</SCHEMA>
</TYPES>
<MESSAGE name="invoke">
<PART element="tns:invokeInput" name="request"></PART>
</MESSAGE>
<MESSAGE name="invokeResponse">
<PART element="tns:invokeOutput" name="response"></PART>
</MESSAGE>
<PORTTYPE name="LOCALPROJECT_ProviderJobFirstRequestResponse">
<OPERATION name="invoke">
<INPUT message="tns:invoke" name="invoke" />
<OUTPUT message="tns:invokeResponse" name="invokeResponse"></OUTPUT>
</OPERATION>
</PORTTYPE>
<BINDING name="LOCALPROJECT_ProviderJobFirstRequestResponseSoapBinding" type="tns:LOCALPROJECT_ProviderJobFirstRequestResponse">
<BINDING SOAP="http://schemas.xmlsoap.org/wsdl/soap/" style="document" transport="http://schemas.xmlsoap.org/soap/http"></BINDING>
<OPERATION name="invoke">
<OPERATION SOAP="http://schemas.xmlsoap.org/wsdl/soap/" soapaction="http://talend.org/esb/service/job/invoke" style="document"></OPERATION>
<INPUT name="invoke">
<BODY SOAP="http://schemas.xmlsoap.org/wsdl/soap/" use="literal"></BODY>
</INPUT>
<OUTPUT name="invokeResponse">
<BODY SOAP="http://schemas.xmlsoap.org/wsdl/soap/" use="literal"></BODY>
</OUTPUT>
</OPERATION>
</BINDING>
<SERVICE name="LOCALPROJECT_ProviderJobFirstRequestResponse">
<PORT binding="tns:LOCALPROJECT_ProviderJobFirstRequestResponseSoapBinding" name="LOCALPROJECT_ProviderJobFirstRequestResponse_Port">
<ADDRESS SOAP="http://schemas.xmlsoap.org/wsdl/soap/" location="http://127.0.0.1:8088/esb/provider"></ADDRESS>
</PORT>
</SERVICE>
</DEFINITIONS>