NServiceBus“没有可用的来源”

时间:2012-11-26 13:57:55

标签: visual-studio nservicebus asp.net-web-api nservicebus3

我正在开发一个使用NServiceBus的web api项目。每次我启动我的NserviceBus主机时,调试过程都会中断,我得到一个“No Source Available”消息,我无法弄清楚发生了什么。我可以从我的api项目发送消息,主机将通过我继续错误来接收它,但每次我启动主机时都会收到该消息。

我的nservicebus配置:

        // nservicebus configuration
        Configure.WithWeb()
                 .DefaultBuilder()
                 .ForWebApi()
                 .Log4Net()
                 .XmlSerializer()
                 .MsmqSubscriptionStorage()
                 .MsmqTransport()
                     .IsTransactional(false)
                     .PurgeOnStartup(false)
                 .UnicastBus()
                    .ImpersonateSender(false)
                 .CreateBus()
                 .Start(() => Configure.Instance.ForInstallationOn<NServiceBus.Installation.Environments.Windows>().Install());

我的web.config:

<configSections>
<section name="MsmqTransportConfig" type="NServiceBus.Config.MsmqTransportConfig, NServiceBus.Core" />
<section name="UnicastBusConfig" type="NServiceBus.Config.UnicastBusConfig, NServiceBus.Core" />
</configSections>

<MsmqTransportConfig ErrorQueue="Error" NumberOfWorkerThreads="1" MaxRetries="5" />
<UnicastBusConfig>
<MessageEndpointMappings>
  <add Messages="Messages" Endpoint="Domain" />
</MessageEndpointMappings>
</UnicastBusConfig>

app.config:

<configSections>
<section name="MsmqTransportConfig" type="NServiceBus.Config.MsmqTransportConfig, NServiceBus.Core" />
<section name="MessageForwardingInCaseOfFaultConfig" type="NServiceBus.Config.MessageForwardingInCaseOfFaultConfig, NServiceBus.Core" />
</configSections>
<MsmqTransportConfig ErrorQueue="error" NumberOfWorkerThreads="1" MaxRetries="5" />
<MessageForwardingInCaseOfFaultConfig ErrorQueue="error" />

我的处理程序实现了IHandleMessages,当我继续通过错误消息时,它似乎处理消息并且端点被配置为服务器。当NServiceBus的控制台窗口出现时,如果队列中已有消息,我会收到错误消息,告诉我端点未配置为发布者。

我正在使用NServiceBus 3.0.0。

感谢您的任何意见。

0 个答案:

没有答案