开发者

How to make SOAP WSDL request in Objective-C?

开发者 https://www.devze.com 2022-12-20 07:36 出处:网络
I have a WSDL script which has the followin开发者_开发百科g format <definitions name=\"ProcessData\" targetNamespace=\"urn:ProcessData\">

I have a WSDL script which has the followin开发者_开发百科g format

<definitions name="ProcessData" targetNamespace="urn:ProcessData">

<message name="CreateAccount">
<part name="firstName" type="xsd:string"/>
<part name="lastName" type="xsd:string"/>
<part name="password" type="xsd:string"/>
<part name="emailAddress" type="xsd:string"/>
<part name="sendEmail" type="xsd:string"/>
<part name="key" type="xsd:string"/>
</message>

<message name="CreateAccountResponse">
<part name="result" type="xsd:string"/>
</message>
<definitions>

How to make SOAP WSDL request in Objective-C and get the resonse ?

Thanks


Take a look: http://ditchnet.org/soapclient/

0

精彩评论

暂无评论...
验证码 换一张
取 消