objective c - how to receive object (on iphone side)returned by webservice? -


in xcode want call webservice return value object ?
1. soap message call web service ?
2. how xcode receive object , use?

right have 1 method return string , know how call use of soap, dont know if change in case of object..

thank in advance

generally webservice has return kind of standard xml.

if webservice conforms strictly soap return soap-xml message like:

<?xml version="1.0"?> <soap:envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">  <soap:header>  </soap:header>   <soap:body>    <m:getstockprice xmlns:m="http://www.example.org/stock">    <m:stockname>ibm</m:stockname>    </m:getstockprice>   </soap:body> </soap:envelope> 

for more information see soap on wikipedia


Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -