"提供的 URI 方案“https”;无效;预期是“http”。参数名称:via” - 帮助?
我查遍了互联网和堆栈溢出来解决这个问题,但没有任何效果,我希望有人知道我错过了什么。
我正在尝试连接到 https: 服务,但收到此错误
“提供的 URI 方案 'https' 无效;预期为 'http'。参数名称:via”
这是我的配置:
<system.serviceModel>
<client>
<endpoint address="https://authenicate.example.com/service/authenticate" behaviorConfiguration="Project" binding="basicHttpBinding" bindingConfiguration="SSLBinding" contract="Example.Test.Authentication" name="InternalAuthenticate" />
</client>
<bindings>
<basicHttpBinding>
<binding name="SSLBinding" maxBufferSize="2147483647" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647">
<security mode="Transport" />
<readerQuotas maxDepth="32" maxStringContentLength="2048000" maxArrayLength="2147483647" maxBytesPerRead="4096" maxNameTableCharCount="2147483647" />
</binding>
</basicHttpBinding>
</bindings>
<services />
<behaviors>
<endpointBehaviors>
<behavior name="Project">
<dataContractSerializer maxItemsInObjectGraph="2147483647" />
</behavior>
</endpointBehaviors>
<serviceBehaviors>
<behavior name="DispatcherBehavior">
<serviceMetadata httpsGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
</behaviors>
有什么想法吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Mex 绑定代替 HTTPS。正如评论中提到的,有一些替代方案不需要使用 Mex 绑定。请查看此示例。
You can use Mex binding instead for HTTPS. As mentioned in the comments there are alternatives that don't require the use of Mex binding. Take a look at this example.
或者使用自定义绑定。
我必须这样做才能解决使用 WCF 和负载均衡器的一些问题
Or use a custom binding.
I've had to do this to get arround some problems using WCF and a load balancer