Frage

I have the following WSDL file uploaded to Windows Azure Webistes

http://pippogr.azurewebsites.net/ChurchGuideServices.svc?wsdl

Can you tell me what are the values for the Soap_ACtion MEthod name, namespace for the Method: GetMessage

Thanks

War es hilfreich?

Lösung

You can find it with in binding tag.....

 <wsdl:operation name="GetMessage">
<soap:operation soapAction="http://tempuri.org/IChurchGuideServices/GetMessage" style="document"/>
<wsdl:input>
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output>
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>

and Namespace:

xmlns:tns="http://tempuri.org/"
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top