.net核心Soap服务器响应

时间:2019-07-23 07:23:37

标签: .net asp.net-core soap .net-core

我使用.net core 2.2来响应这样的示例Soap请求:

<?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:soap="http://schemas.xmlsoap.org/soap/envelope/">      
  <soap:Header>
    <UserCredentials xmlns="http://tempuri.org/">
      <userName>string</userName>
      <password>string</password>
    </UserCredentials>
  </soap:Header>
  <soap:Body>
    <GetSubxmlns="http://tempuri.org/">
      <value>10</value>
    </GetSub>
  </soap:Body>
</soap:Envelope>

但是我不知道如何获得userNamepassword

我搜索了很多,但没有找到明确的解决方案,所以有人可以帮我吗?!

注意: 我无法编辑我的请求模型!

0 个答案:

没有答案