Skip to Content
0
Former Member
May 29, 2008 at 11:24 AM

Problems to execute SOAP message

55 Views

Hi experts,

I have the following problem with this WSDL:

http://schemas.xmlsoap.org/wsdl/" xmlns:apachesoap=" http://xml.apache.org/xml-soap" xmlns:impl="urn:MDirect" xmlns:intf="urn:MDirect" 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="sendSmsWithSenderResponse">

<wsdl:part name="sendSmsWithSenderReturn" type="xsd:string"/>

</wsdl:message>

<wsdl:message name="sendSmsWithSenderRequest">

<wsdl:part name="user" type="xsd:string"/>

<wsdl:part name="pwd" type="xsd:string"/>

<wsdl:part name="company" type="xsd:string"/>

<wsdl:part name="mobile" type="xsd:string"/>

<wsdl:part name="txt" type="xsd:string"/>

<wsdl:part name="sender" type="xsd:string"/>

</wsdl:message>

<wsdl:portType name="MDirectWS">

<wsdl:operation name="sendSmsWithSender" parameterOrder="user pwd company mobile txt sender">

<wsdl:input message="intf:sendSmsWithSenderRequest" name="sendSmsWithSenderRequest"/>

<wsdl:output message="intf:sendSmsWithSenderResponse" name="sendSmsWithSenderResponse"/>

</wsdl:operation>

</wsdl:portType>

<wsdl:binding name="MDirectWSSoapBinding" type="intf:MDirectWS">

http://schemas.xmlsoap.org/soap/http"/>

<wsdl:operation name="sendSmsWithSender">

<wsdlsoap:operation soapAction=""/>

<wsdl:input name="sendSmsWithSenderRequest">

http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:MDirect" use="encoded"/>

</wsdl:input>

<wsdl:output name="sendSmsWithSenderResponse">

http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:MDirect" use="encoded"/>

</wsdl:output>

</wsdl:operation>

</wsdl:binding>

<wsdl:service name="MDirectWSService">

<wsdl:port binding="intf:MDirectWSSoapBinding" name="MDirectWS">

https://www.xxx.com/mdirectws/services/MDirectWS"/>

</wsdl:port>

</wsdl:service>

</wsdl:definitions>

When running the request SOAP to the WebService I returned the following error:

soap fault: No such operation 'sendSmsWithSenderRequest'

Why only happens in SAP XI?

The tool tests WebService, SOAP-IU, works well.

Thanks,

Jose.