“System.Web.HttpException:无法验证数据” VS 开发服务器中出现错误,但 IIS 中没有错误

发布于 2024-12-29 03:57:59 字数 371 浏览 1 评论 0原文

我在 Windows 7 64 位开发盒中使用 Visual Studio 2010 SP1。在盒子上使用 IIS 时,我的 asp.net 工作正常,但当我切换到使用 Visual Studio Development Server 时,我在这一行中收到异常“System.Web.HttpException:无法验证数据”(在 global.asax 中的 Application_AuthenticateRequest 事件中) .cs):

FormsAuthenticationTicket authTicket = FormsAuthentication.Decrypt(authCookie.Value);

为什么使用内部 Web 服务器时会失败?

I am using Visual Studio 2010 SP1 in Windows 7 64bit dev box. My asp.net works fine when using IIS on the box but when I switch to using Visual Studio Development Server, I get an exception "System.Web.HttpException: Unable to validate data" in this line (in Application_AuthenticateRequest event in global.asax.cs):

FormsAuthenticationTicket authTicket = FormsAuthentication.Decrypt(authCookie.Value);

Why does this fail when using the internal web server?

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

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

发布评论

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

评论(3

痞味浪人 2025-01-05 03:57:59

尝试在切换服务器后删除 cookie。两台服务器都有自己的配置,并且可能有自己的解密密钥,表单身份验证 cookie 被加密和解密。因此,如果您仍然拥有 IIS 加密的 cookie,那么将项目切换为使用内置开发服务器并访问该站点,该服务器将无法解密 cookie。

如果将解密密钥放入 web.config 中,则可以防止此问题:

<machineKey decryptionKey="..." />

Try deleting your cookies after you switch servers. Both servers have their own configuration and probably their own decryption key with which the forms authentication cookie is encrypted and decrypted. Thus, if you still have the cookie encrypted by IIS, then switch the project to use the built-in development server and hit the site, that server can't decrypt the cookie.

You can prevent this issue if you put the decryption key in your web.config:

<machineKey decryptionKey="..." />
沐歌 2025-01-05 03:57:59

导致此错误的还有另一个原因。如果 Web.config 文件中的 MachineKey 条目以

xmlns=""

Then 结尾,您也会遇到此错误。

There is another cause of this error. If your MachineKey entry in the Web.config file ends with

xmlns=""

Then you will also suffer this error.

穿透光 2025-01-05 03:57:59

我使用了@Michiel van Oosterhout 的方法,但它不起作用。然而,然后我补充道:

<authentication mode="Forms">
  <forms protection="Encryption" enableCrossAppRedirects="true"/>
</authentication>

现在可以了。

I used @Michiel van Oosterhout's method but it did not work. however, then I added:

<authentication mode="Forms">
  <forms protection="Encryption" enableCrossAppRedirects="true"/>
</authentication>

Now it works.

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