nservicebus Questions
2
Found this line in an application I just took over, and it doesn't make much sense.
using (new TransactionScope(TransactionScopeOption.Suppress, new TimeSpan(1,0,0))) {
This occurs immediately in...
Draggletailed asked 15/4, 2013 at 18:23
4
Solved
The associated code, works well in an independent console application, whereas errors out, while trying to make it work, within an NSB architecture. I have tried to test the same within the worker,...
Fixed asked 24/7, 2018 at 4:16
2
I'm looking at a project written by an ex-colleague, in the file launchSettings.json (under Properties) he has the following:
{
"profiles": {
"ProjectName": {
"commandName": "Executable",
"exe...
Merchantman asked 22/1, 2019 at 7:4
5
Solved
I'm struggling with a pros and cons list regarding NServiceBus and MassTransit.
Now I know there is already a thread in here, but it doesn't really answer my questions.
Here is what I've re...
Fearful asked 30/11, 2012 at 14:46
4
Solved
I recently started to become familiar with DDD concepts and CQRS and I realized that one of the most important concepts in CQRS is DDD beside load balancing, NServiceBus and etc but I am curious if...
Cathrin asked 19/4, 2019 at 8:2
2
Solved
In our team, we exchange messages via RabbitMQ between two systems. The messages are encoded in protobuf (v3). We use NServiceBus on the sending and receiving side. We use the RabbitMQ management U...
Ziegfeld asked 8/7, 2019 at 18:8
2
Because NServiceBus doesn't seem to support adding a priority mechanism to the message queue, I want to implement this myself.
Command handler (Producer):
public void Handle(DoAnAction message)...
Taneka asked 9/4, 2019 at 10:32
3
I am trying to follow this article (http://blog.zoolutions.se/post/2010/04/01/Conquering-NServiceBus-part-4-e28093-Testing.aspx) to create unit test for my nservicebus saga project
See the followi...
Blanka asked 10/2, 2011 at 5:37
3
Solved
Can anyone give me examples of how in production a correlation id can be used?
I have read it is used in request/response type messages but I don't understand where I would use it?
One example (w...
Boothman asked 25/11, 2013 at 4:27
1
Solved
I have read multiple times the documentation on the website. I am reading again and again the same articles and I cannot understand what they are trying to achieve with sagas. Besides, there are al...
Delozier asked 5/4, 2018 at 20:3
2
Solved
What are advantages of using NServiceBus + RabbitMQ against pure RabbitMQ?
I guess it provides additional infrastracture. But what else?
Neurath asked 1/11, 2017 at 17:53
2
Solved
I'm a little confused about the flow in a system using domain events to build the read model. Particularly, how do we deal with the fact that the user expects data (and its view) to change when the...
Thickskinned asked 6/10, 2010 at 17:15
4
I just created a new NServiceProject as specified in this link:
http://support.nservicebus.com/customer/portal/articles/856687-getting-started---creating-a-new-project
But after running the proj...
Mowry asked 28/1, 2013 at 9:59
3
Solved
What are the essential differences between publishing a message using Bus.Publish and sending a message using Bus.Send? I am looking to understand how they differ and also when I should choose to u...
Chang asked 8/2, 2011 at 21:29
2
Solved
I am trying to learn messaging system. I have found that RabbitMq and NServiceBus are using together in few places. My questions are
If I am using the RabbitMQ then why do i need NServiceBus? and...
Recusancy asked 29/6, 2016 at 15:3
1
We are running into difficulties when trying to set up a gateway. I can get it running fine locally, similar to the documentation you provided, but once I need to change the localhost addresses, th...
Whang asked 10/1, 2017 at 23:21
2
Solved
I am attempting to publish a message as shown below
_bus.Publish(new BatchCompleted { BatchId = batch.Id});
And handle it in a BatchCompletedHandler:
public class BatchCompletedHandler: IHandle...
Ceremonious asked 24/9, 2013 at 11:59
1
Solved
Imaginative setup
Several services
Each lives in its own repository
Each developed separately
Each deployed separately
They want to communicate via NServiceBus
Research
Examples on NServiceBus...
Rb asked 9/8, 2016 at 13:39
1
Solved
I am querying built-in TimeoutData entity in RavenDB using Raven.Client.Lightweight 2.5 library to get specific timeout document. It is possible that TimeoutData does not exist in the database beca...
Peking asked 13/5, 2016 at 6:6
1
Solved
I'm finding common pattern emerging in backend message processing:
ServiceA generates a large number of messages.
ServiceB processes one message at-a-time.
ServiceC issues a call to a database o...
Sabrasabre asked 15/12, 2015 at 18:28
5
Solved
Background:
I have two NServiceBus endpoint projects in my solution.
Both are NServiceBus subscribers and contain a message handler to one message.
Each subscriber project handles a message fr...
Positive asked 23/5, 2011 at 9:3
5
Solved
The current advice on handling exceptions in NServiceBus is to use the built in facilities. Errored out messages go to the error message queue, and a log is written to disk.
But what if I want to ...
Livvi asked 17/4, 2013 at 19:51
2
Solved
I just began looking into ServiceStack and WOW, I might as well throw WCF out the window, but it can also send out messages using Redis.
I'm familiar with NServiceBus and it's also used for ...
Willywillynilly asked 30/12, 2014 at 23:53
5
Solved
Is NServiceBus a ESB or lightweight ESB at all? or is it more like WCF with durable/ reliable messaging? It looks to me more like a messaging framework than ESB.
just want some pointer as I am jus...
Verner asked 31/5, 2012 at 18:23
2
Solved
In the distributed message transaction world, am trying to understand the different parts that are involved in developing distributed systems. From what I understand you can design messaging system...
Felty asked 20/9, 2014 at 22:27
1 Next >
© 2022 - 2024 — McMap. All rights reserved.