可以在混合身份验证模式下在共享主机上运行 OData 吗?

发布于 2024-08-28 14:32:40 字数 87 浏览 9 评论 0原文

我的主机非常擅长帮助调整一些东西以使我的各种 .NET 项目正常工作,但他们不愿意更改 IIS 授权设置。目前我的 OData 服务对此抱怨不已。我还有选择吗?

My host has been pretty good about helping to tweak things to get my various .NET peices working, but they are unwilling to change the IIS authorization settings. Presently my OData service whines about that. Have I got any options?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

长伴 2024-09-04 14:32:40

假设您在 IIS 7 下托管,您可以将以下内容添加到您的配置文件中以禁用身份验证方法(基本、集成等)。我刚刚在共享主机上托管 WCF 数据服务时遇到了这个问题,这让我发疯,因为他们会让我将其关闭,但对我的网站的任何更改都会导致它再次启用,我会开始收到错误。

希望这有帮助...

<system.webServer> 
     <security> 
            <authentication> 
                <windowsAuthentication enabled="false" />
            </authentication> 
     </security> 
</system.webServer>

Assuming you are hosting under IIS 7 you can add the following to your config file to disable an authentication method (basic, integrated, etc.). I just went through this when hosting a WCF Data Service on a shared host and it was driving me crazy because they would let me turn it off, but any change to my site would cause it to enable again and I would start getting the error.

Hope this helps...

<system.webServer> 
     <security> 
            <authentication> 
                <windowsAuthentication enabled="false" />
            </authentication> 
     </security> 
</system.webServer>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文