403 - 将类库添加到 Azure 项目上的 WCF Web 角色时出现禁止错误

发布于 2024-12-12 21:25:59 字数 236 浏览 1 评论 0原文

以管理员身份打开VS,我创建一个解决方案,添加新的Cloud Azure项目,然后选择WCF服务Web角色,然后运行它,一切都很好,我可以通过浏览器很好地访问默认服务,但是,当添加新的空白类库作为新的DAL时项目到解决方案并运行它,我收到 403 错误,提示“您无权使用您提供的凭据查看此目录或页面。”

出了什么问题?

谢谢

P.S(无论是否添加 EMDX 以及对类库的正确数据库访问权限,它都会产生一些结果)

Open VS as admin, I create a solution, add new Cloud Azure Project then pick WCF service web role and then run it, everything is fine, I could access default services through browser nicely, however, when add new blank class library as new DAL project to the solution and run it, I have 403 error says "You do not have permission to view this directory or page using the credentials that you supplied."

what is going wrong?

thanks

P.S (with or without adding EMDX with proper db access to class lib, it came out something)

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

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

发布评论

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

评论(1

美人骨 2024-12-19 21:25:59

我试图在这里回答https://stackoverflow.com/a/9411719/182371

关于拒绝访问错误:

  • 这可能只是 IIS 默认设置,用于禁用浏览。要解决此问题,只需导航到 IIS 中的该网站,找到 Directory
    浏览图标,然后按启用。你至少会看到这些文件
    在该目录中。

  • 不仅尝试 127.0.0.1:81,还尝试该文件夹内的特定文档,例如 127.0.0.1:81/Default.aspx

  • 考虑到端口有时会出现混乱的情况。您在错误消息中看到它是端口 82,但在您的
    浏览器的端口是 81。因此请确保您使用的是正确的端口。或者,
    更好的是,在您的服务定义中尝试使用一些非标准
    端口以避免重新映射。

I tried to answer here https://stackoverflow.com/a/9411719/182371:

As for the Access Denied error:

  • it could be just an IIS default setting to disable browsing. To resolve that, just navigate to that web site in IIS, find Directory
    Browsing icon, and press Enable. You will at least see the files
    inside that directory.

  • Also try not only 127.0.0.1:81, buta specific document inside that folder, like 127.0.0.1:81/Default.aspx

  • Take into account the fact that there's sometimes some mess with the ports. You see that in the error message it's port 82, but in your
    browser it's port 81. So make sure you're using the right port. Or,
    even better, in your service definition try to use some non-standard
    port for this to avoid remapping.

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