I have a big problem with WSDL files and webMethods… I’m suppose to develope a SOAP service that is already defined in a WSDL file. This is not the normal way to do stuff. In the normal case I would create the flow service first and later on generate the WSDL file from the flow service… but in this case it is suppose to go the other way around. This is the WSDL file that I have:
<?xml version=“1.0” encoding=“UTF-8”?>
<wsdl:definitions targetNamespace=“https://something” xmlns=“http://schemas.xmlsoap.org/wsdl/” xmlns:apachesoap=“http://xml.apache.org/xml-soap” xmlns:impl=“https://something” xmlns:intf=“something” xmlns:soapenc=“http://schemas.xmlsoap.org/soap/encoding/” xmlns:wsdl=“http://schemas.xmlsoap.org/wsdl/” xmlns:wsdlsoap=“http://schemas.xmlsoap.org/wsdl/soap/” xmlns:xsd=“http://www.w3.org/2001/XMLSchema”>
<wsdl:message name=“executeResponse”>
<wsdl:part name=“executeReturn” type=“xsd:string”/>
</wsdl:message>
<wsdl:message name=“executeRequest”>
<wsdl:part name=“kdnNr” type=“xsd:string”/>
<wsdl:part name=“xmldata” type=“xsd:string”/>
<wsdl:part name=“signature” type=“xsd:string”/>
</wsdl:message>
<wsdl:portType name=“RechercheImpl”>
<wsdl:operation name=“execute” parameterOrder=“kdnNr xmldata signature”>
<wsdl:input message=“intf:executeRequest” name=“executeRequest”/>
<wsdl:output message=“intf:executeResponse” name=“executeResponse”/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name=“RechercheSoapBinding” type=“intf:RechercheImpl”>
<wsdlsoap:binding style=“rpc” transport=“http://schemas.xmlsoap.org/soap/http”/>
<wsdl:operation name=“execute”>
<wsdlsoap:operation soapAction=“”/>
<wsdl:input name=“executeRequest”>
<wsdlsoap:body encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“http://something” use=“encoded”/>
</wsdl:input>
<wsdl:output name=“executeResponse”>
<wsdlsoap:body encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” namespace=“https://something” use=“encoded”/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name=“RechercheImplService”>
<wsdl:port binding=“intf:RechercheSoapBinding” name=“Recherche”>
<wsdlsoap:address location=“HERE IS MY ADRESS LOCATION TO BE SET”/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
The only thing the other party wants from me is to specify the address to the soap service…
Can anyone help me.