gpt4 book ai didi

c# - 向简单 Web 服务请求添加 header

转载 作者:太空宇宙 更新时间:2023-11-03 11:13:41 25 4
gpt4 key购买 nike

我有一个控制台应用程序,我只需单击并使用“添加服务引用”即可添加 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>

所以,一切都很好,似乎我可以成功使用该服务,但服务文档说我需要在请求的 header 上设置用户名和密码,这是文档的示例:

<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>

那么如何将用户名和密码添加到标题中呢?有什么建议吗?

最佳答案

要添加静态 header ,只需在 .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>

关于c# - 向简单 Web 服务请求添加 header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13266468/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com