我有一个简单的应用程序,它使用多个集线器,一些在同一个项目中,一个在另一个类库中,一切正常。现在我想尝试加载在运行时使用 CSharpCodeProvider.CompileAssemblyFromSource 创建的集线器,并让我的客户端与该集线器通信。它没有出现在 /signalr/hubs/ 中。
作为我要开始工作的几件事之一,我正在尝试使用此处描述的自定义 IAssemblyLocator:
https://github.com/SignalR/SignalR/wiki/Extensibility
但据我所知,我的 GetAssemblies() 代码没有被调用。这是我的 Global.asax.cs:
protected void Application_Start()
{
GlobalHost.DependencyResolver.Register(typeof(IAssemblyLocator), () => new AssemblyLocator());
var config = new HubConfiguration
{
EnableCrossDomain = true
};
RouteTable.Routes.MapHubs(config);
AreaRegistration.RegisterAllAreas();
WebApiConfig.Register(GlobalConfiguration.Configuration);
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
}
和自定义 IAssemblyLocator:
public class AssemblyLocator : IAssemblyLocator
{
public IList< Assembly > GetAssemblies()
{
throw new Exception("I will break stuff");
IList<Assembly> allAsms = BuildManager.GetReferencedAssemblies().Cast<Assembly>().ToList();
foreach( Assembly asm in HubFactory.HubAssemblies )
{
allAsms.Add( asm );
}
return allAsms;
}
}
正如你所看到的,我做的第一件事就是抛出一个异常,只是为了证明这段代码被调用了,但它并没有被抛出。有了这个代码,我的应用程序继续正常工作,我的页面/客户端仍然可以向我的集线器发送消息。
对于背景,我希望使用一个连接,使用在运行时而不是编译时创建的集线器在同一个网页上工作的几个单独的数据馈送。所以我需要能够在运行时创建和加载集线器,让它出现在 /signalr/hubs/ 中。我很确定我的运行时创建的集线器没问题 - 我已经获取了生成的代码,将其粘贴到常规的 .cs 文件中并在编译时包含它,然后它在 /signalr/hubs 中显示正常。由于共享连接,似乎无法通过一个集线器使用组。我应该能够使用 GetHubContext(string) 找到我在运行时创建的集线器。
欢迎所有想法!