How to make SOAP WSDL request in Objective-C?
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/
精彩评论