Visual Studio 2005 - 添加安全 Web 服务的 Web 引用失败

发布于 2024-07-10 20:09:09 字数 487 浏览 8 评论 0原文

我在需要表单身份验证的目录中有一个 web 服务(asmx 文件)

当我尝试通过 VS2005 添加 WebReference 时 - 我收到以下错误:

The request failed with the error message:
--
<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href="/webchat/login.aspx?ReturnUrl=%2fwebchat%WebService.asmx">here</a>.</h2>
</body></html>

当我删除该目录中的 web.config 时(基本上删除了表单身份验证的要求)一切正常。 我可以添加网络参考。

任何想法?

I have a webservice (asmx file) in a directory requiring form authentication

When I try to add the WebReference through VS2005 - I get the following error:

The request failed with the error message:
--
<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href="/webchat/login.aspx?ReturnUrl=%2fwebchat%WebService.asmx">here</a>.</h2>
</body></html>

When I remove the web.config in that directory (and basically removing the requirement for form authentication) everything works fine. I can add the WebReference.

Any idea?

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

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

发布评论

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

评论(1

澜川若宁 2024-07-17 20:09:09

将以下代码放入 web.config 中:

<location path="path/to/your/service.asmx">
    <system.web>
        <authorization>
            <allow users="*"/>
        </authorization>
    </system.web>
</location>

ASP.Net 允许覆盖特定位置的应用程序范围设置。

Place the following code in your web.config:

<location path="path/to/your/service.asmx">
    <system.web>
        <authorization>
            <allow users="*"/>
        </authorization>
    </system.web>
</location>

ASP.Net allows to override application-wide settings for specific locations.

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