wcf提供的URI方案'http'无效;预期'https'

时间:2012-03-25 09:33:33

标签: wcf wcf-security

根据此post

创建fileTransfer

当我在本地测试它时效果很好

我使用没有ssl的iis在服务器上设置我的服务

这是我的服务器配置:

<system.serviceModel>
<serviceHostingEnvironment aspNetCompatibilityEnabled="false" multipleSiteBindingsEnabled="true"/>
<bindings>
  <wsHttpBinding>
    <binding name="TransferService" maxReceivedMessageSize="2147483647">
      <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647"/>
      <security mode="None" />
    </binding>
  </wsHttpBinding>
</bindings>

<services>
  <service behaviorConfiguration="TransferServiceBehavior" name="WcfFTP.FtpService">
    <endpoint address="FtpService.svc" binding="wsHttpBinding" bindingConfiguration="TransferService" contract="WcfFTP.IFileTransfer"/>
    <endpoint contract="IMetadataExchange" binding="mexHttpBinding" address="mex"/>
  </service>
</services>
<behaviors>
  <serviceBehaviors>
    <behavior name="TransferServiceBehavior">
      <serviceMetadata httpGetEnabled="true"/>
      <dataContractSerializer maxItemsInObjectGraph="2147483647"/>
      <serviceDebug includeExceptionDetailInFaults="true"/>
      <serviceThrottling maxConcurrentCalls="500" maxConcurrentSessions="500" maxConcurrentInstances="500"/>
    </behavior>
  </serviceBehaviors>
</behaviors>

那就是我的客户:

 <system.serviceModel>
<bindings>
  <wsHttpBinding>
    <binding name="WSHttpBinding_IFileTransfer" closeTimeout="00:01:00"
      openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
      bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
      maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text"
      textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
      <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
        maxBytesPerRead="4096" maxNameTableCharCount="16384" />
      <reliableSession ordered="true" inactivityTimeout="00:10:00"
        enabled="false" />

      <security mode="TransportWithMessageCredential">
        <transport clientCredentialType="Digest" proxyCredentialType="None"
          realm="" />
        <message clientCredentialType="Windows" negotiateServiceCredential="true" />
      </security>
    </binding>
  </wsHttpBinding>
</bindings>
<client>
  <endpoint address="http://www.myhost.com/WsFTP/FtpService.svc"
    binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IFileTransfer"
    contract="FtpWcfClient.IFileTransfer" name="WSHttpBinding_IFileTransfer" />
</client>

在这个安全问题上,我已经在网上提供了一些帮助,但这个错误似乎很糟糕

1 个答案:

答案 0 :(得分:7)

客户端和服务器的绑定配置不兼容。服务器指定没有安全性,但客户端指定TransportWithMessageCredential。可以将客户端配置中的安全模式设置为无。


我强烈建议您也使用WCF configuration editor,这可以避免许多常见错误,例如拼写错误,不匹配等错误。

相关问题