gpt4 book ai didi

c# - 提供的 URI 方案 'https' 无效;预计 'http' 。参数名称 : via

转载 作者:IT王子 更新时间:2023-10-29 03:28:37 25 4
gpt4 key购买 nike

我正在尝试通过 basicHttpBinding 创建 WCF 服务以通过 https 使用。这是我的 web.config:

<!-- language: xml -->
<service behaviorConfiguration="MyServices.PingResultServiceBehavior"
name="MyServices.PingResultService">
<endpoint address=""
binding="basicHttpBinding"
bindingConfiguration="defaultBasicHttpBinding"
contract="MyServices.IPingResultService">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
<endpoint address="mex"
binding="mexHttpBinding"
contract="IMetadataExchange" />
</service>
...
<bindings>
<basicHttpBinding>
<binding name="defaultBasicHttpBinding">
<security mode="Transport">
<transport clientCredentialType="None"/>
</security>
</binding>
</basicHttpBinding>
</bindings>
...
<behaviors>
<serviceBehaviors>
<behavior name="MyServices.UpdateServiceBehavior">
<serviceMetadata httpsGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
</behaviors>

我正在使用能够正确检索所有元数据的 WCFStorm 进行连接,但是当我调用实际方法时,我得到:

The provided URI scheme 'https' is invalid; expected 'http'. Parameter name: via

最佳答案

尝试在您的 app.config 中添加消息凭据,例如:

<bindings> 
<basicHttpBinding>
<binding name="defaultBasicHttpBinding">
<security mode="Transport">
<transport clientCredentialType="None" proxyCredentialType="None" realm=""/>
<message clientCredentialType="Certificate" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
</bindings>

关于c# - 提供的 URI 方案 'https' 无效;预计 'http' 。参数名称 : via,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2435823/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com