> You'll need to set the raw postData to XML and interface with the
> service that way.. If only there was a web service that let you simply
> POST to it..
If it's a SOAP service, you could take a look at:
http://code.google.com/p/wsdl2objc/
I haven't tried this myself, but it looks as though it will generate
code to perform the SOAP call for you from a WSDL url.
Alternatively, if the call is simple and this is a one off, you could
just build the XML manually as Shaun suggests.
If this is your own service, and it's only used for your iPhone app,
you will probably save yourself a lot of time if you simply accept the
parameters as part of a standard form post and use ASIFormDataRequest
instead. Any benefits you get from using SOAP will quickly evaporate,
as there is no native support for SOAP web services in the iPhone APIs.
Best,
Ben