信号器2 Autofac呼叫中心在请求中两到三次

时间:2015-04-09 14:12:18

标签: c# signalr autofac

你不得不原谅这个奇怪的头衔,但经过几个小时的审视同样的问题,这是我能想到的最好的!

我最初将信号器嵌入了我的MVC项目,但将其移到了自托管的OWIN应用程序中。

当调用集线器时,在初始加载时,它将加载集线器两次,随后调用它将加载它三次。

这是我的中心,我按照文档发送到了发球台:

public class TestHub : Hub
{
    private readonly ILifetimeScope _scope;
    private ITestService _testService;

    public TestHub(ILifetimeScope scope)
    {
        _scope = scope.BeginLifetimeScope();
        _testService = _scope.Resolve<ITestService>();
    }

    public void SignalRTest()
    {
        var types = _testService.SomeMethod();
        Clients.Caller.populateSignalRTest(types);
    }

    protected override void Dispose(bool disposing)
    {
        if (disposing && _scope != null)
        {
            _scope.Dispose();
        }
        base.Dispose (disposing);
    }
}

这是OWIN配置:

var listener = (HttpListener)appBuilder.Properties[typeof(HttpListener).FullName];
listener.AuthenticationSchemes = AuthenticationSchemes.Ntlm;
appBuilder.UseCors(CorsOptions.AllowAll);
var builder = new ContainerBuilder();
// ... Other modules being imported ...
builder.RegisterModule<NLogModule>();
builder.RegisterType<TestService> ().As<ITestService> ();
builder.RegisterHubs(Assembly.GetExecutingAssembly());
var config = new HubConfiguration();
var container = builder.Build();
config.Resolver = new AutofacDependencyResolver(container);
config.EnableDetailedErrors = true;
appBuilder.UseAutofacMiddleware(container);
appBuilder.MapSignalR("/signalr", config);

Autofac必须在运行任何方法之前解决所有依赖关系 - 应用程序调用多个集线器,这需要很长时间才能解决。

以下是我使用的版本:

SignalR 2.1.2 (Also tried 2.2.0)
AutoFac 3.5.2

有没有人遇到这个或知道为什么会这样?

由于

1 个答案:

答案 0 :(得分:0)

一位同事做了一些调试,我肆虐并做了别的事情,发现它是服务之一,而不是AutoFac或signalR。我们有一个索引,服务的构造函数方法是验证索引是否有效。删除它,它很好。