Questions tagged [nservicebus]

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

The most popular Service Bus for .NET

Simple and easy publish/subscribe communication over any transport, on premise and in the cloud. Get enterprise-grade scalability and reliability for your workflows and integrations without any messy XML configuration - just pure-code bliss. Runs on MSMQ, RabbitMQ, Azure, and more – optimally configured out of the box so you can focus on your business logic.

Resources

Installation

NServiceBus can most easily be installed through its NuGet package.

Install-Package NServiceBus
2232 questions
0
votes
1 answer

nservicebus messages vanished

NserviceBus version: 6.0.0.0 Use AzureStorageQueueTransport All messages should be sent to a queue in Azure storage queue, We have huge amount of messages send to queue so another app can pick up to process. Occasionally, there are some messages…
user9665486
  • 71
  • 1
  • 3
0
votes
2 answers

Where can I find NServicebus 2.1 source code?

I am looking for the NSB 2.1 source code. Does anyone have the code?
mynkow
  • 4,408
  • 4
  • 38
  • 65
0
votes
1 answer

Is it possible to have conditional flow in the NServiceBus Saga?

I am new to NServiceBus & its Saga... is it possible to implement conditional flow in the sagas? saga: s->a->b->e At 'a', i should be able make a choice whether to go b or new state c. From 'c' again i should reach e
user441380
  • 211
  • 1
  • 2
  • 5
0
votes
0 answers

I need to know weather we would get the message again once it failed by the n service bus

like if there is a DivideByZzero exception so it requires a code fix and if the code gets fixed will it tries to resend the same message again
Amar Srivastava
  • 373
  • 3
  • 10
0
votes
2 answers

how to solve mscorlib.dll Could not extract 'MySqlPassword' from Environment variables..?

This is code for NserviseBus bus i got error when running that code. Error "mscorlib.dll Could not extract 'MySqlPassword' from Environment variables"please help me. Thank you.... using System; using System.Threading.Tasks; using…
Suramya Patel
  • 81
  • 1
  • 1
  • 8
0
votes
1 answer

How do I get relevant client only to accept message with nservice bus and signal r?

I have a system where messages are being sent server from one application to server side in my web application The messages are being sent by NService bus Has anyone ever been able to find a way to get a message to the relevant server side instance…
Paul
  • 2,773
  • 7
  • 41
  • 96
0
votes
1 answer

nservicebus configuration in .config file - how to enter?

nservicebus configuration in .config file - how to enter, do I have to typ[e all that manually if i want the config to come from the config file or there is an automated option to do this?
monstro
  • 6,254
  • 10
  • 65
  • 111
0
votes
1 answer

What's the difference between these two nservicebus statements

In one documentation they say IHandleMessages handler hast to be written this way (signature is automatically generated when I choose to "Implement interface" option in Visual Studio): public class PlaceOrderHandler : IHandleMessages { …
monstro
  • 6,254
  • 10
  • 65
  • 111
0
votes
1 answer

nservicebus persistance data - what is it?

as I was reading thru documentation on nservicebus, I wasnt able to find what is persisted under Persistence section. If nservicebus is a loosely coupled distributed library sending self-contained messages, what is there to persist? I dont…
monstro
  • 6,254
  • 10
  • 65
  • 111
0
votes
2 answers