- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Azure 网站中部署的 SignalR 中遇到了此异常。在调试环境下运行良好。它是 SignalR 1.0.1,我使用 .NET MVC 和 WebApi
The data protection operation was unsuccessful. This may have been caused by not having the user profile loaded for the current thread's user context, which may be the case when the thread is impersonating.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Security.Cryptography.CryptographicException: The data protection operation was unsuccessful. This may have been caused by not having the user profile loaded for the current thread's user context, which may be the case when the thread is impersonating.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[CryptographicException: The data protection operation was unsuccessful. This may have been caused by not having the user profile loaded for the current thread's user context, which may be the case when the thread is impersonating.]
Microsoft.Owin.Host.SystemWeb.<>c__DisplayClass1.<GetRethrowWithNoStackLossDelegate>b__0(Exception ex) +27
Microsoft.Owin.Host.SystemWeb.Utils.RethrowWithOriginalStack(Exception ex) +15
Microsoft.Owin.Host.SystemWeb.CallContextAsyncResult.End(IAsyncResult result) +47
Microsoft.Owin.Host.SystemWeb.OwinHttpHandler.EndProcessRequest(IAsyncResult result) +7
System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +9629708
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +155
你有什么想法吗?谢谢
最佳答案
对于访问此页面的其他人,我也遇到了同样的问题,但解决方案要简单得多。正如上面评论中提到的,接受的答案很糟糕。还提到,SignalR 默认使用 MachineKeyDataProtector
作为 IProtectedData
。 MapHubs
和 MapConnection
都调用一个函数 InitializeProtectedData
,该函数向依赖解析器注册 MachineKeyDataProtector
。
我的问题是我正在映射我的 SignalR 路由,然后配置依赖项解析器
RouteTable.Routes.MapConnection<SomeEndpoint>("SomeEndpoint", "SomeEndpointUrl");
GlobalHost.DependencyResolver =
new StructureMapDependencyResolver(ObjectFactory.Container);
所以基本上,当我注册自定义解析器时,由 MapConnection -> InitializeProtectedData 完成的 IProtectedData 解析器注册被震撼了。简单修复,在映射连接之前设置解析器。
GlobalHost.DependencyResolver =
new StructureMapDependencyResolver(ObjectFactory.Container);
RouteTable.Routes.MapConnection<SomeEndpoint>("SomeEndpoint", "SomeEndpointUrl");
关于azure - Azure 网站上的 SignalR CryptographicException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15393684/
我有一些数据要保护,所以我使用 ProtectedData 将其加密到文件中。当我尝试读取和解密数据时,我遇到了最奇怪的异常: CryptographicException - 无法更新密码。为新密码
解密 key 时出现错误: CryptographicException was unhandled by user code. Length of the data to decrypt is in
我有这段用于解密文件的代码,但如果我运行它,它会在 using 语句 using (CryptoStream .. .) { ... } public static void DecryptFile(
我正在使用 Thinktecture Identity 服务器并在 azure 中运行它。我遇到的问题是,有时当我读取联合元数据 XML 文件或登录时,我会收到此 Keyset does not ex
我正在使用 Thinktecture Identity 服务器并在 azure 中运行它。我遇到的问题是,有时当我读取联合元数据 XML 文件或登录时,我会收到此 Keyset does not ex
我在 Azure 网站中部署的 SignalR 中遇到了此异常。在调试环境下运行良好。它是 SignalR 1.0.1,我使用 .NET MVC 和 WebApi The data protectio
我正在尝试使用 .NET 中的 RijndaelManaged 类来加密文本字符串。但是,我不断收到 CryptographicException(“要解密的数据长度无效”)。此消息并不是很有帮助,尤
我连接到一个外部 Web 服务,该服务在 2018 年 5 月中旬之前一直完美无缺地运行。突然间,我开始收到带有消息“格式错误的 XML 签名”的 CryptographicException。我的调
每次我将我的 Blazor 服务器项目发布到我的网站域并打开该网站时,都会发生此异常,谷歌搜索几乎没有帮助: 它说 AppState.cs: line 21,所以这是它的代码行: 调试本地主机时不会发
加载站点核心站点的默认页面时遇到问题。日志错误如下: System.Security.Cryptography.CryptographicException 未处理 Message=系统找不到指定的路
我有一些代码可以调用使用 X.509 认证保护的第三方 Web 服务。 如果我直接调用代码(使用单元测试),它就可以正常工作。 部署后,将通过 WCF 服务调用此代码。我添加了第二个调用 WCF 服务
public RSAKeyPair() { string keyContainerName="pEncKey" CspParameters cspp = new
我正在尝试在 C# 中使用 RSA 加密和解密数据。我有以下 MSTest 单元测试: const string rawPassword = "mypass"; // Encrypt string p
我有一个 .p12 证书文件,我这样创建我的证书: var certificate = new X509Certificate2(certFileLocation, "mySecret", X509K
您好,感谢您的帮助。我们试图让 Sitecore 站点在 WS 2008 R2 标准服务器上正常运行,但一直遇到以下异常: System.Security.Cryptography.Cryptogra
我有一个托管在 Azure 上的 Identity Server Web 应用。它的根目录中有一个用于签名的 .pfx 文件。问题是,当新发布时它工作得很好,但一段时间后它开始抛出Cryptograp
我正在使用 Xamarin 创建 Monodroid 应用程序。 我与后端的通信是通过 https 协议(protocol)进行的。这会导致 Debug模式下出现“System.Security.Cr
在我的 ASP.NET WebForms 应用程序中 (如果重要的话,该应用程序在 windows server 2008 R2、IIS 7.5 和 Runtime v4.0 集成模式应用程序池上运行
我有一个使用 RSACryptoServiceProvider 使用已知私钥(存储在变量中)解密一些数据的应用程序。 当 IIS 应用程序池配置为使用网络服务时,一切运行正常。 但是,当我们配置 II
尝试启动 Docker 桌面应用程序时出现此错误。我尝试卸载并重新安装 Docker。 最佳答案 我不得不删除凭据管理器中的 Docker 主机文件系统访问记录。 关于Docker System.Se
我是一名优秀的程序员,十分优秀!