我有一个MVC应用程序,我正在显示来自数据库的记录,我可以创建一个新记录。我正在使用SignalR在Nservicebus的IEvent处理程序完成时通知客户端。
Index.cshtml
<script src="signalr/hubs" type="text/javascript"></script>
<script>
var myHub;
$(function () {
myHub = $.connection.userAccountHub;
//add handler to handle the nofication
myHub.testMsg = function () {
alert("I would really like for this to work");
};
$.connection.hub.start();
});
</script>
UserController.cs
public class UserController : Controller
{
private readonly IBus _bus;
public ActionResult Index()
{
return View(getalldata());
}
[HttpPost]
public ActionResult Create(CreateUserAccountModel user)
{
if (ModelState.IsValid)
{
_bus.Send(new CreateUserAccountCommand
{
FirstName = user.FirstName,
LastName = user.LastName,
NetworkLogin = user.NetworkLogin
});
return RedirectToAction("Index");
}
return View(user);
}
UserAccountHub
public class UserAccountHub : Hub
{
}
UserAccountCreatedNotifyEventHandler.cs
public class UserAccountCreatedNotifyEventHandler : IHandleMessages<UserAccountCreatedNotifyEvent>
{
public void Handle(UserAccountCreatedNotifyEvent message)
{
IConnectionManager connectionManager = AspNetHost.DependencyResolver.Resolve<IConnectionManager>();
dynamic clients = connectionManager.GetClients<UserAccountHub>();
clients.testMsg();
}
}
基本上我转到Index操作,它只显示我的所有记录并有一个创建按钮。我点击了创建按钮@Html.ActionLink("Create", "Create", null, null)
,它调用了public ActionResult Create(CreateUserAccountModel user)
方法。启动总线然后重定向到索引操作。服务总线完成它的事情并且UserAccountCreatedNotifyEventHandler Handle
方法被适当地触发。
这是我开始看到一些问题的地方。我调用适当的信号器方法来获取客户端,以便我可以广播消息.testMsg()
但是客户端没有收到消息。
因此,简而言之,我的信号员clients.testMsg
呼叫并未按预期行事。据我所知,我正在关注我在网络上找到的代码示例,甚至是我所拥有的其他测试项目。我假设我正在做一些愚蠢的事情,但只是无法瞄准它。
答案 0 :(得分:2)
在您的处理程序中,您需要为集线器创建代理并在代理上调用该方法。好吧,注入代理,因为每次创建它都会很昂贵!
请参阅http://www.asp.net/signalr/overview/signalr-20/hubs-api/hubs-api-guide-net-client
答案 1 :(得分:0)
试
myHub.client.testMsg = function(){....}
不
myHub.testMsg = function(){....}