Questions tagged [nservicebus4]

NServiceBus is a highly pluggable, reliable, open source Enterprise Service Bus built on .NET.

NServiceBus is a highly pluggable, reliable, open source Enterprise Service Bus built on .NET.

85 questions
1
vote
1 answer

NServiceBus 4.03 Distributor puts 30 messages into storage queue for one message in the control queue

When the worker starts it drops a message into the control q and then when i start the distributor, it picks up the message from Control Q and puts 30 messages into the storage q. Any clue why???
Miral
  • 5,968
  • 16
  • 57
  • 85
1
vote
0 answers

NServiceBus 4.0.4 Subscriber very slow

I have a problem with my publish/subscribe implementation. I'm upgrading from NServiceBus version 2.6 to 4.0.4 and everything seems okay as far as I can understand from the logs but the messages are processed really slowly by the subscriber. I use…
1
vote
0 answers

NServiceBus 4.0.3 Message has failed FLR and will be handed over to SLR, doesnt gets into SLR

I see this message and I cant see second level retries happening. I can see the message ending up in .timeouts queue. I have seen the sample app from nservice bus which works all ok any idea what i would be missing. I have enable SLR in code and…
Miral
  • 5,968
  • 16
  • 57
  • 85
1
vote
3 answers

The NServiceBus Setup Wizard ended prematurely

I'm trying to install NServiceBus 4.0 downloaded from http://particular.net/downloads. When I run the installer with admin rights, I get the following error. "NServiceBus setup ended prematurely because of an error. Your system has not been modifed.…
Matt Stewart
  • 322
  • 3
  • 14
1
vote
3 answers

NServiceBus Pub/Sub Distributor/Worker Scenario Too Slow

I am working on a proof of concept implementation of NServiceBus v4.x for work. Right now I have two subscribers and a single publisher. The publisher can publish over 500 message per second. It runs great. Subscriber A runs without…
0xElGato
  • 353
  • 2
  • 10
0
votes
1 answer

How to configure NserviceBus with AzureStorageQueueTransport and Azure Storage account which is having private access level

We are using NserviceBus with AzureStorageQueueTransport & storage account with public access but now we have to use Azure Storage account which is having private access level. Is there any way to create a SAS token and append while creating…
0
votes
0 answers

NServiceBus - Could not load file or assembly '' or one of its dependencies

I am working with an .Net Web App that consumes messages from a NServiceBus (v4.7.0) queue. I am getting the following exception: 2019-02-20 15:35:13,624 [28] ERROR NServiceBus.Unicast.Transport.TransportReceiver [(null)] - [(null)] - Failed to…
Bonomi
  • 2,541
  • 5
  • 39
  • 51
0
votes
2 answers

NServicebus 4.7.6 is not respecting the SecondLevelRetriesConfig Values on app.config

There is no custom configuration in code. It works based on the default SecondLevelRetriesConfig values not picking up the custom configuration.…
Kannaiyan
  • 12,554
  • 3
  • 44
  • 83
0
votes
2 answers

How do I update to StructureMap 3.x while staying on NServiceBus 4.x?

I want to upgrade to StructureMap 3.x on my MVC project, but I'm stuck on NServiceBus 4.x because the 5.x license terms do not make sense for our limited usage. The MVC project is send-only. How can I upgrade StructureMap while leaving NSB 4.x in…
Josh Kodroff
  • 27,301
  • 27
  • 95
  • 148
0
votes
1 answer

How does NServiceBus know which DLL to use?

This is not a problem, but a question for me to understand the "magic" that happens in NserviceBus I have a working environment where a NServiceBus-Service is called that way: "D:\Service\NServiceBus.Host.exe" -service …
Ole Albers
  • 8,715
  • 10
  • 73
  • 166
0
votes
0 answers

Nservicebus failing to start on localsystem

I recently upgraded to v4.6 of nservicebus and when I am trying to start locally using services.msc, it is throwing error "services on local system started and stopped". Can't make out what is missing. I can use command line to start the nservicebus…
alice7
  • 3,834
  • 14
  • 64
  • 93
0
votes
1 answer

Get EndPointName in NServiceBus 5

I'm in the process of upgrading my application from NServiceBus 4 to 5. I have a class that implements IWantToRunWhenBusStartsAndStops and on the Start() method I print out the EndpointName - taking it from NServiceBus.Configure.EndpointName On…
developer82
  • 13,237
  • 21
  • 88
  • 153
0
votes
1 answer

Bus.Reply when called from Saga and non-Saga

I have an NServiceBus endpoint that handles saving documents to a document management system. After the document is saved, I call Bus.Reply(new DocumentSaved{}). This works fine when I am sending SaveDocument from a Saga (which cares deeply about…
Josh Kodroff
  • 27,301
  • 27
  • 95
  • 148
0
votes
1 answer

NServiceBus - Difference between DefineEndpointName and app.config MessageEndpointMappings

Would somebody be able to explain what the difference is between configuring the EndpointName in Configure.DefineEndpointName and specifying it in the app.config under MessageEndpointMappings? i.e. .DefineEndpointName("Something.MessageQueue") And …
TBohnen.jnr
  • 5,117
  • 1
  • 19
  • 26
0
votes
1 answer

How to programmatically check if msmq quota exceeded

I would like to programmatically check if the MSMQ quota exceeded. In this way, i could provide a ServicePulse custom check. I noticed that the MSMQ quota mostly exceeds if the transactional dead-letter queue is full of messages. So instead of check…
Fabian Trottmann
  • 214
  • 4
  • 12