如果你能帮我解决这个问题,我会非常感激,我是这个平台的初学者,这是我第一次使用 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>
你能帮我一些鳕鱼吗?先感谢您