添加标题到简单的Web服务请求(Add Header to the Simple Web Servi

2019-07-03 14:54发布

我有一个控制台应用程序,我只是添加Web引用通过写点击使用“添加服务引用”,那么我的config文件更改为:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <system.serviceModel>
        <bindings>
            <basicHttpBinding>
                <binding name="FServiceSoapBinding" />
            </basicHttpBinding>
        </bindings>
        <client>
            <endpoint address="http://ServiceAdd/FService" binding="basicHttpBinding"
                bindingConfiguration="FServiceSoapBinding" contract="MyReference.MService_"
                name="FServicePort" />
        </client>
    </system.serviceModel>
</configuration>

所以,每一件事情是好的,似乎我可以成功地使用该服务,但该服务的文档说需要对请求的报头中设置的用户名和密码,这是文档的例子:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:web="http://namespace.com/">
  <soapenv:Header>
    <Account>
      <username>user</username>
      <password>password</password>
    </Account>
  </soapenv:Header>
  <soapenv:Body>
    <web:oneofservicemethods>
      <items>
        <item>...</item>
      </items>
    </web:oneofservicemethods>
  </soapenv:Body>
</soapenv:Envelope>

所以,我怎么能在头部添加用户名和密码? 什么建议吗?

Answer 1:

如果我理解正确的,你想在请求的报头中设置用户名和密码。 您可以通过实现WCF Extensibility – Message InspectorsIClientMessageInspector.BeforeSendRequest

创建一个实现类IClientMessageInspector 。 在BeforeSendRequest方法,您的自定义头添加到传出消息。

请看这个 , 这个和这个



Answer 2:

对于添加静态头根本就在config文件端点部分增加,从而改变端点:

<client>
    <endpoint address="http://ServiceAdd/FService" binding="basicHttpBinding"
     bindingConfiguration="FServiceSoapBinding" contract="MyReference.MService_"
     name="FServicePort" >
        <headers>
            <Account>
                <username>user</username>
                <password>password</password>
            </Account>
        </headers>
    </endpoint>
</client>


文章来源: Add Header to the Simple Web Service Request