gpt4 book ai didi

c# - 如何使用 Azure 辅助角色和 OWIN 扩展 SignalR

转载 作者:IT王子 更新时间:2023-10-29 06:01:05 24 4
gpt4 key购买 nike

SignalR 使用 Azure Web 角色进行惊人的扩展。但是,当我在 Azure 辅助角色中使用自托管的 OWIN 项目时,添加多个实例时 SignalR 将开始出现问题。作为记录,我的项目使用 Redis 作为背板。

当 Azure 辅助角色实例增加到超过一个时,客户端连接将随机失败并出现错误“ConnectionId 的格式不正确”。我认为这是由于负载平衡导致单个客户端的协商跨越多个服务器时造成的;我不相信参与协商的多个服务器可以解密数据(幕后的DPAPI?)。

我尝试在 app.config 中设置 < machineKey/> validationKey 和 decryptionKey 但这似乎没有什么区别;问题依然存在。同样,该项目可以作为 Web 角色 (IIS) 正常工作,但不能作为辅助角色(OWIN 自托管)。

假设这是 DpapiDataProtectionProvider 的问题,我如何确保提供程序在多个服务器/实例中呈现相同的加密/解密结果?

解决方案

SignalR (DpapiDataProtectionProvider) 使用的默认保护提供程序似乎不支持 Azure 辅助角色横向扩展。通过推出我自己的示例提供程序,我能够扩展 SignalR/OWIN/Azure Worker 而不会收到随机的 400 HTTP/“ConnectionId 的格式不正确”。请记住,以下示例不会保护/保护 token 。

public class ExampleDataProvider : IDataProtector
{
public byte[] Protect(byte[] userData)
{
Trace.TraceInformation("Protect called: " + Convert.ToBase64String(userData));
return userData;
}

public byte[] Unprotect(byte[] protectedData)
{
Trace.TraceInformation("Unprotect called: " + Convert.ToBase64String(protectedData));
return protectedData;
}
}

public class ExampleProtectionProvider : IDataProtectionProvider
{
public IDataProtector Create(params string[] purposes)
{
Trace.TraceInformation("Example Protection Provider Created");
return new ExampleDataProvider();
}
}

在 Owin 启动期间注入(inject)自定义提供程序:

public class Startup
{
public void Configuration(IAppBuilder app)
{
app.SetDataProtectionProvider(new ExampleProtectionProvider());

GlobalHost.DependencyResolver.UseRedis(new RedisScaleoutConfiguration("0.0.0.0", 0, "", "Example"));

app.MapSignalR(new HubConfiguration
{
EnableDetailedErrors = true
});

app.UseWelcomePage("/");
}
}

最佳答案

SignalR 使用 IAppBuilder.Properties["security.DataProtectionProvider"] 中的 IDataProtectionProvider(如果它不为空)。

在调用 MapSignalR 之前,您可以在 Startup.Configuration 中将其替换为您自己的 IDataProtectionProvider。

通过提供您自己的 IDataProtectionProvider,您可以确保每个工作角色都使用相同的 key 来保护/取消保护。

关于c# - 如何使用 Azure 辅助角色和 OWIN 扩展 SignalR,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22484064/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com