我一直致力于一个项目,我需要在IIS中托管Nservicebus。 我需要MVC3 webapplication发送消息,nservicebus主机应该处理这个消息 然后将某种消息发送回Web应用程序。
异步页面示例http://docs.particular.net/samples/web/asp-mvc-application/ 显示了一种方法。我可以让它工作,但这并不能完全满足我的要求。我需要从处理程序返回一个对象,而不仅仅是一个int。
为了让这个工作,我尝试在IIS下设置一个主机,在我的Global.asax中我有这个代码:
Bus = Configure.WithWeb()
.DefineEndpointName("CQRS")
.Log4Net()
.DefaultBuilder()
.DisableTimeoutManager()
.XmlSerializer()
.MsmqTransport()
.IsTransactional(true)
.PurgeOnStartup(false)
.InMemorySubscriptionStorage()
.UnicastBus()
.AllowSubscribeToSelf()
.ImpersonateSender(false)
.LoadMessageHandlers()
.CreateBus().Start();
我的web.config:
<MessageForwardingInCaseOfFaultConfig ErrorQueue="CQRS.error" />
<MsmqTransportConfig NumberOfWorkerThreads="1" MaxRetries="5" />
<UnicastBusConfig DistributorControlAddress="" DistributorDataAddress="" TimeoutManagerAddress="CQRS.timeouts">
<MessageEndpointMappings>
<add Messages="Nokavision.InvoiceProcessing.CQRS.Messages" Endpoint="CQRS" />
<add Messages="NServiceBus.Scheduling.Messages.ScheduledTask" Endpoint="CQRS" />
</MessageEndpointMappings>
</UnicastBusConfig>
使用Bus对象发送消息可以正常工作,“cqrs”队列中会显示一条消息。 但是,webapplication中的处理程序不会触发。这是代码:
public class UpdateInkoopFactuurAlgemeenHandler : IHandleMessages<UpdateInkoopFactuurAlgemeenCommand>
{
public IBus Bus { get; set; }
public void Handle(UpdateInkoopFactuurAlgemeenCommand message)
{
P2PEntities entities = new P2PEntities();
var factuur = (from f in entities.Documenten.OfType<InkoopFactuur>()
where f.DocumentId == message.DTO.DocumentId
select f).FirstOrDefault();
if (factuur != null)
{
factuur.FactuurNummer = message.DTO.FactuurNummer;
entities.SaveChanges();
}
//Bus.Return(new UpdateInkoopFactuurAlgemeenResponse(message.DTO.ClientConnectionId));
}
}
我确定我在这里缺少一些小东西,但我做错了什么,为什么在我能清楚地看到队列中的消息时,处理程序不会被触发。 同样在Bus对象上,我可以看到正在加载的处理程序。
答案 0 :(得分:1)
如果在fluent配置中正确配置安装程序,则NSB会正确设置队列的权限。 http://andreasohlund.net/2012/01/26/installers-in-nservicebus-3-0/
答案 1 :(得分:0)
好吧,我想我弄清楚了,似乎NSB创建的队列没有IIS USER的完全访问权限。我为每个队列中的每个人设置了“完全控制”并重新启动了IIS。不知何故,它似乎现在起作用