1

基本上我在这里遵循了本教程

并在我的本地机器上启动并运行并正常工作。我已将它部署在 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 绑定有关,但我确实需要这种类型的加密。

谁能给我有关如何解决此问题的任何信息/建议:)

4

2 回答 2

0

我遵循的教程在消息头中传递了一个密钥并基于该密钥进行身份验证,但这不是问题。

您是否在通话中传递了密钥?如果您正在运行的代码期望身份验证标头中有某些内容,并且它不存在可能导致该错误返回。

于 2013-01-16T17:45:45.157 回答
0

好的,我现在已经解决了这个问题,我有两个主要问题,这个问题实际上最终成为我的第一个障碍。

使用 wshttpbinding,我必须以编程方式配置客户端,创建 wshttpbinding 并将其附加到服务实例。我还必须通过 Windows 凭据。一旦我这样做了,呼叫者已通过身份验证消息就消失了。

错误的下一阶段是应用程序/xml 错误,其中预期的响应与soap 1.2 格式不匹配。这很奇怪,因为出于某种原因,即使绑定服务器端是 wshttp,它在部署时默认为 basichttp。为了解决这个问题,wcf 配置编辑器中有一个映射部分,您可以在其中将协议映射到绑定。在此,http 设置为 basichttp,只需将其更改为 wshttp 即可:)

希望这对某人有所帮助,因为这两个错误似乎无处不在,根本没有答案!

于 2013-01-18T09:51:09.573 回答