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