0

如果你能帮我解决这个问题,我会非常感激,我是这个平台的初学者,这是我第一次使用 SOAP 服务。,我需要实现一个登录页面。我不知道如何使用服务中的数据。

POST /soap.asmx HTTP/1.1
Host: www.bids4all.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.bids4all.com/Login"

<?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:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://www.bids4all.com" xmlns:types="http://www.bids4all.com/encodedTypes"   xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <tns:Login>
     <Email xsi:type="xsd:string">string</Email>
     <Password xsi:type="xsd:string">string</Password>
    </tns:Login>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
 Content-Type: text/xml; charset=utf-8
  Content-Length: length

<?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:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://www.bids4all.com" xmlns:types="http://www.bids4all.com/encodedTypes" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <tns:LoginResponse>
      <LoginResult xsi:type="xsd:boolean">boolean</LoginResult>
    </tns:LoginResponse>
  </soap:Body>
</soap:Envelope>

你能帮我一些鳕鱼吗?先感谢您

4

1 回答 1

1

有 2 个很好的工具可以为 iOS 生成 SOAP 客户端。它们是SudzCwsdl2objc 项目。他们都提供了示例代码。

您可以使用其中之一,也可以生成自己的请求并通过 NSURLConnection 发布。

希望能帮助到你...

于 2012-06-12T10:56:53.227 回答