1

我想发送以下 SOAP/XML 请求并在 asp.net mvc/C# 中获取 SOAP 响应

<?xml
<soapenv:Envelope
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:urn="urn:myurn">
   <soapenv:Header/>
   <soapenv:Body>
      <urn:fLocHistory 
soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
         <HistRequest 
xsi:type="urn:SubMemLocationHistoryRequest">
            <MSID xsi:type="xsd:string">test</MSID>
            <AID xsi:type="xsd:int">2</AID>
            <MemMSISDN xsi:type="xsd:string">test</MemMSISDN>

         </HistRequest>
      </urn:fLocHistory>
   </soapenv:Body>
</soapenv:Envelope>

发送请求的更好方法是什么。我看过关于MSXML2,WCF或的例子asmx。如果你能指出一些好的入门教程。我在这里这里这里看到了一些例子。

4

0 回答 0