gpt4 book ai didi

.net - 如何配置 WCF 服务以在没有 HTTP 绑定(bind)的情况下通过 HTTPS 工作?

转载 作者:行者123 更新时间:2023-12-03 13:15:48 24 4
gpt4 key购买 nike

我已将我的 WCF 服务配置为使用 SSL,但它仅在 IIS 网站中存在 HTTP 绑定(bind)时才有效。当 HTTP 绑定(bind)不存在且仅存在 HTTPS 绑定(bind)时,我收到以下错误:

The HttpGetEnabled property of ServiceMetadataBehavior is set to true and the HttpGetUrl property is a relative address, but there is no http base address. Either supply an http base address or set HttpGetUrl to an absolute address.



我该如何解决这个问题?

谢谢。

最佳答案

以这种方式修改您的配置:

<behaviors>
<serviceBehaviors>
<behavior> <!-- behavior can have name (must have name in WCF 3.x) -->
<serviceMetadata httpGetEnabled="false" httpsGetEnabled="true" />
</behavior>
</serviceBehaviors>
</behaviors>

关于.net - 如何配置 WCF 服务以在没有 HTTP 绑定(bind)的情况下通过 HTTPS 工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4863590/

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