我正在尝试在我的 iPhone 应用程序中使用公共 Web 服务,但我不确定如何使用 WSDL。例如我有这个WSDL。现在我必须发送什么 XML 或 SOAP 才能使用此服务?
类似于我在演示 SOAP 消息中使用的内容:
<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
"<soap:Envelope \n"
"xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" \n"
"xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" \n"
"xmlns:SOAP-ENC=\"http://schemas.xmlsoap.org/soap/encoding/\" \n"
"soap:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\" \n"
"xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\"> \n"
"<soap:Body> \n"
"<CelsiusToFahrenheit xmlns=\"http://tempuri.org/\">\n"
"<Celsius>23</Celsius>\n"
"</CelsiusToFahrenheit>\n"
"</soap:Body> \n"
"</soap:Envelope>