gpt4 book ai didi

c# - 执行 : Manual addressing is enabled on this factory, 时出现 WCF 错误,因此发送的所有消息都必须预先寻址

转载 作者:行者123 更新时间:2023-11-30 14:11:07 24 4
gpt4 key购买 nike

我有一个使用 WebHttpBinding 托管的 WCF 服务。该服务非常简单,一个接受多个参数的操作合约。使用“添加服务引用”后自动生成的 WCF 客户端无法直接使用 WCF 服务。该错误仅发生在 WebHttpBinding 而不是其他人。

服务器端

[OperationContract]
[WebInvoke(Method = "POST", UriTemplate = "Submit2String", RequestFormat = WebMessageFormat.Xml, ResponseFormat = WebMessageFormat.Xml, BodyStyle = WebMessageBodyStyle.Wrapped)]
string Submit2String(string input1, string input2);

客户端

ExpenseServiceClient proxy = new ExpenseServiceClient();
proxy.Submit2String("test1", "test2");

当我测试运行上面的代码时,出现以下错误:

Error: InvalidOperationException was unhandled by user code
Manual addressing is enabled on this factory, so all messages sent must be pre-addressed.

这是使用“添加服务引用”后我自动生成的配置文件的样子:

 <system.serviceModel>
<bindings>
<webHttpBinding>
<binding name="webHttp">
<security mode="None">
<transport clientCredentialType="None" />
</security>
</binding>
</webHttpBinding>
</bindings>
<client>
<endpoint binding="webHttpBinding"
bindingConfiguration="webHttp"
contract="ExpenseService.IExpenseService"
address="http://localhost/myservices/ExpenseService.svc">
</endpoint>
</client>
</system.serviceModel>

最佳答案

我意识到只有 WebHttpBinding 有这个问题。要解决这个问题,只需在客户端配置文件中添加一个行为配置,如下所示:

<behaviors>
<endpointBehaviors>
<behavior name="webEndpoint">
<webHttp defaultBodyStyle="Wrapped"
defaultOutgoingResponseFormat="Xml"
helpEnabled="true"/>
</behavior>
</endpointBehaviors>
</behaviors>

然后,更新客户端端点以使用上述端点行为。

<client>
<endpoint binding="webHttpBinding"
bindingConfiguration="webHttp"
behaviorConfiguration="webEndpoint"
contract="ExpenseService.IExpenseService"
address="http://myservices/ExpenseService.svc">
</endpoint>
</client>

问题应该解决了。

关于c# - 执行 : Manual addressing is enabled on this factory, 时出现 WCF 错误,因此发送的所有消息都必须预先寻址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21204638/

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