我想将 xml 请求发送到另一台服务器,并想在 asp.net C# 中读取 xml 响应。
但是不知道怎么弄??
这是我的要求.. 我怎样才能生成它?
<request-Body>
<request>
<id>001</client-id>
<code>33333</authentication-code>
</request>
</request-Body>
这是来自另一台服务器的响应。
怎么读??
<SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/1999/XMLSchema/instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope" xsi:schemaLocation="http://www.aaa.com/schemas/ver1.4/Schema.xsd">
<SOAP-ENV:Body xsi:type = "response-Body">
<response-Body>
<response>
<id>001</client-id>
<status>ok</status>
<authentication-status>yes</authentication-status>
<session-id>0</session-id>
</response>
</response-Body>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
怎么做??怎么连接其他服务器??