我想从我的 iphone 应用程序中调用一个带有参数的网络服务。
该参数是一个字符串,我必须在何处以及如何指定使用 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>"
];