我正在使用wsHttpBinding
WCF 服务。
我添加了一个网络参考,并且我有网络代理(它基于SoapHttpClientProtocol
)。
我还尝试使用wcf 服务( http://zzzz/zz.svc?wsdlwsdl.exe
)生成的实际 wsdl来构建代理。
当客户端调用服务时,我收到以下错误:
The SOAP action specified on the message, '', does not match the HTTP SOAP Action, 'http://tempuri.org/Service1/Operation1'.
为什么客户端(Web 代理)不能与我的 WCF 服务一起使用?
我应该采取哪些步骤使它们起作用?
我正在运行 .NET FW 3.5 和 ASP.NET 2.0。