How to make SOAP WSDL request in Objective-C ?
Posted
by Biranchi
on Stack Overflow
See other posts from Stack Overflow
or by Biranchi
Published on 2010-02-11T06:05:49Z
Indexed on
2010/05/19
10:30 UTC
Read the original article
Hit count: 304
Hi all,
I have a WSDL script which has the following 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
© Stack Overflow or respective owner