Note that there are some explanatory texts on larger screens.

plurals
  1. POWhy messsage comes to queue but not handles? It used to work before. Does nservicebus requires a registration?
    primarykey
    data
    text
    <p>For some reason for azure service bus my nservicebus stopped working: public class ConfigureLogging : IWantCustomLogging { public void Init() { Configure.Instance.ConsoleLogger(); } }</p> <pre><code>class DefineRouting : IProvideConfiguration&lt;UnicastBusConfig&gt; { public UnicastBusConfig GetConfiguration() { return new UnicastBusConfig { MessageEndpointMappings = new MessageEndpointMappingCollection { new MessageEndpointMapping { Messages="ServiceBus.Messages", Endpoint="webinputqueue" } } }; } } public class EndpointConfiguration : IConfigureThisEndpoint, AsA_Worker, UsingTransport&lt;AzureServiceBus&gt; { public EndpointConfiguration() { Feature.Disable&lt;SecondLevelRetries&gt;(); Feature.Disable&lt;TimeoutManager&gt;(); } } </code></pre> <p>public class Host : NServiceBus.Hosting.Azure.RoleEntryPoint { private IScheduler scheduler;</p> <pre><code> public override bool OnStart() { RegisterByObjectFactory.Register(); return base.OnStart(); } } </code></pre> <p>In app config I have proper settings: </p> <p>Version of NServiceBus is: 4.1</p> <p>Azure config settings:</p> <pre><code>AzureServiceBusQueueConfig.QueueName: webinputqueue MessageForwardingInCaseOfFaultConfig.ErrorQueue: errorqueue AzureProfileConfig.Profiles: NServiceBus.Development TransportConfig.MaxRetries: 5 TransportConfig.MaximumConcurrencyLevel: 1 </code></pre> <p>The GoogleCalendarHandler looks like this:</p> <pre><code>public class GoogleCalendarHandler : IHandleMessages&lt;GoogleCalendarCommand&gt; { public void Handle(GoogleCalendarCommand message) { Operate(message); } ... </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload