ios « soap « Java Enterprise Q&A





1. SOAPAction not recognized if sent from OS X or iOS    stackoverflow.com

Im trying to access a SOAP webservice from iOS. But i only get this response:

<?xml version="1.0"?>

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<soap:Fault>
<faultcode>soap:Client</faultcode>
<faultstring>Den spesifiserte SOAPAction ble ikke gjenkjent.</faultstring>
<detail/>
</soap:Fault>
</soap:Body>
</soap:Envelope>
The fault string says: The specified SOAPAction was not recognized. (Translated ...

2. Is it possible to service both SOAP and Hessian protocols from the same Web Service?    stackoverflow.com

I have a large Tomcat 6 Web Service that I would like to support from iPhone/iPad, but so far none of the iOS SOAP implementations that I've tried have worked (SudzC ...

3. iOS call soap functions in thread    stackoverflow.com

guys I'm a new iOS developer, I'm having a problem when calling soap functions in new thread. Here is more details: I have a function calling soap web service:

WebService *webService = [[[WebService alloc]init]retain];
[webService getUser:self ...