我对 WCF 很陌生。我想向 Web 服务发送 SOAP 请求并接收来自该服务的响应。WSDL 是:http ://content.domain.com/ContentService?wsdl 。我已将此 wsdl 添加到 ServiceReference。下一步是什么 ?
我需要构建的 SOAP 请求应该看起来像 -
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"xmlns:con="http://content.domain.com" xmlns:api="http://api.content.domain.com">
<soapenv:Header />
<soapenv:Body>
<con:get1>
<con:in0>
<api:AID>89575</api:AID>
<api:clientLoginID>abc</api:clientLoginID>
<api:domain>en</api:domain>
</con:in0>
</con:get1>
</soapenv:Body>
</soapenv:Envelope>
对此请求会有一个 xml 响应,我需要对其进行解析并从中获取值。如何在 c# 中实现这一点?