基本上我已经按照本教程here
了让一切正常运行,并在我的本地机器上正常工作。我已经在IIS中部署它并允许必要的防火墙端口,所以关闭我去我的客户端PC驻留在不同的域。
我在这台机器上启动了WCF测试客户端,并输入了WSDL的URL,我能够查看服务调用没问题。唯一的问题是当我真正尝试使用该方法并发送我的值时,我得到以下响应
“来电者未通过服务验证”
很奇怪 - 即使它仍在本地工作,它也无法在另一台机器上工作。有没有一种特定的方法来根据我在做什么来配置客户端?
这是我的web.config
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<services>
<service name="WCF33.Service1">
<endpoint address ="" binding="wsHttpBinding" contract="WCF33.IService1" />
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:8080/WCF33/Service1/" />
</baseAddresses>
</host>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- To avoid disclosing metadata information, set the value below to false before deployment -->
<serviceMetadata httpGetEnabled="true"/>
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
<!--
To browse web app root directory during debugging, set the value below to true.
Set to false before deployment to avoid disclosing web app folder information.
-->
<directoryBrowse enabled="true"/>
</system.webServer>
</configuration>
我接下来的教程传递了邮件头中的一个密钥,并根据该密钥进行身份验证,但这不是问题。我认为这与wshttp绑定有关,但我确实需要这种类型的加密。
任何人都可以给我任何有关如何解决此问题的信息/建议:)
答案 0 :(得分:0)
我接下来的教程传递了邮件标题中的一个密钥,并根据该密码进行身份验证,但这不是问题。
你在通话时传递钥匙吗?如果您运行的代码期望在身份验证标头中有某些内容,那么可能会导致该错误返回。
答案 1 :(得分:0)
好的,我现在有了这个排序,我有两个主要问题,这个问题实际上最终成为我的第一个障碍。
使用wshttpbinding,我必须以编程方式配置客户端,创建一个wshttpbinding并将其附加到服务的实例。我还必须传递Windows凭据。一旦我这样做,调用者被认证的消息就消失了。
错误的下一个阶段是application / xml错误,其中预期的响应与soap 1.2格式不匹配。这是一个奇怪的因为由于某种原因,即使绑定服务器端是wshttp,它在部署时默认为basichttp。为了解决这个问题,wcf配置编辑器中有一个映射部分,您可以在其中将协议映射到绑定。在这个,http被设置为basichttp,只需将其更改为wshttp你就可以了:)
希望这对某人有所帮助,因为这两个错误似乎无处不在,根本没有答案!!