【发布时间】:2018-07-30 13:49:16
【问题描述】:
我是 C# 和 AXL 的新手,所以我试图通过 C# 中的 AXL 更新最终用户 PIN,但没有成功。我发现的一切都是this :
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/8.5">
<soapenv:Header/>
<soapenv:Body>
<ns:updateUser sequence="?">
<userid>enduser1</userid>
<password>123456</password>
<pin>123456</pin>
</ns:updateUser>
</soapenv:Body>
</soapenv:Envelope>
但是如何在 C# 中使用它呢?有 C# 的指南或代码 sn-p 吗?
【问题讨论】: