我有一个应用程序,一个asp.net mvc 4应用程序。我想用easynetq使用rabbitmq。在我的本地计算机中,它完美运行。但是在Windows Server 2012的生产环境中,它不会发送任何消息。
我无法理解,为什么它不起作用。在日志消息中,没什么异常的。 IIS和rabbitmq在同一台机器上。
protected void Application_Start()
{
...
using (var bus = RabbitHutch.CreateBus("host=localhost"))
{
bus.Publish(new SystemLog() { Code = "startapplication", Message = "nomessage" });
}
...
}
void Session_End(object sender, EventArgs e)
{
...
using (var bus = RabbitHutch.CreateBus("host=localhost"))
{
bus.Publish(new SystemLog() { Code = "sessionends", Message = "somenumber"});
};
...
}
提前致谢
答案 0 :(得分:2)
不要将它放在一个using语句中,它会在启动完成后立即处理总线实例,你希望在应用程序的生命周期内保留相同的实例。
而是将实例保存在某处(如静态变量),并将其置于application_end事件中,而不是session_end。
更像这样:
protected void Application_Start()
{
_bus = RabbitHutch.CreateBus("host=localhost"))
_bus.Publish(new SystemLog() { Code = "startapplication", Message = "nomessage" });
}
void Session_End(object sender, EventArgs e)
{
_bus.Publish(new SystemLog() { Code = "sessionends", Message = "somenumber"});
}
protected void Application_End()
{
if(_bus!=null)
_bus.Dispose();
}