我想用我的iPhone應用程序中的參數調用Web服務。如何從iphone傳遞參數給soap web服務?
該參數是一個字符串,以及我在哪裏以及如何指定使用xml調用Web服務的參數,或者它是什麼。
請告訴我,如果有人知道它。我想向Web服務發送一個狀態名稱。
請幫我解決這個問題。
NSString *soapMessage =
[NSString stringWithFormat:
@"<?xml version=\"1.0\" encoding=\"utf-8\"?>"
"<soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">"
"<soap:Body>"
"<stateWiseHospitalName xmlns=\"http://ws.centricare.org\" />"
"</soap:Body>"
"</soap:Envelope>"
];
+ 1爲您的代碼,它爲我工作 – Pramesh 2014-01-08 15:45:19