The other interesting thing that came up a couple days ago.. The queue would have to run inside it's own process (ie..windows service). I had initiallly...
That is how MSMQ works. ... That is how MSMQ works. On Fri, Apr 4, 2008 at 9:30 PM, Evan Hoff < evan@... > wrote: The other interesting thing that...
Ayende Rahien
Ayende@...
Apr 4, 2008 6:47 pm
410
Evan, You could have the queue be hosted in the same process as the nsb process. All that would mean is that you've increased the window of disconnectivity, ...
When you’re saying that you’ve downloaded the code – did you take a released version or are you using subversion? -- Udi Dahan - The Software Simplist ...
In our company we have found that SQL Server Service Broker as a messaging platform scales out better than MSMQ. Any plans on releasing a version for...
Hi Andrew, I asked Udi the same question some weeks ago and at that time there were no plans for supporting SSB. Integrating nServiceBus and SSB would allow...
All you need to do is to build a transport impl on it. Shouldn't be too hard....
Ayende Rahien
Ayende@...
Apr 8, 2008 3:48 am
416
I've been doing a significant amount of research on SOA. After reading article after article about Process, Activity, and Entity services, I stumbled upon...
Let us say that I have a long running saga, and I want to upgrade my system. Doesn't this mean that all my live saga die a horrible death as a result of ...
I would guess that as long as you version your saga assemblies carefully and keep a copy of each version used in production in the GAC of the production ...
Hm, that is a bad outcome from versioning perspective....
Ayende Rahien
Ayende@...
Apr 8, 2008 4:50 pm
423
Ayende, I read your article, but I have some concerns. If I continued with the approach you suggest, I would end up with no fewer than 50 services. I think I...
Verifying Candidate and resolving problematic candidate are two services that can share the same model. To be rather more exact, they are the same service,...
Ayende Rahien
Ayende@...
Apr 8, 2008 6:25 pm
426
I understood that SQL Service broker is always based on conversations between to services based on contracts. Wouldn't that be a different concept, because you...
Can the Unicast functionality be boiled down to a software implementation of a network load balancer? If so, is there additional value added by Unicast? Are...
This belongs in the contrib project but that doesn't seem to be off the ground quite yet. Intentionally kept the design as similar to Spring implementation as...
I can't seem to get the attachment off the post, is there another way for to try this out. We also use Windsor and would rather not have to deal with learning...
Hello, I'm investigating autonomous computing with NSB sagas. As I understood, to send a message to a saga, I need to provide the ID of the existing saga. How...
Sergey Shishkin
sergey.shishkin@...
Apr 10, 2008 10:00 pm
432
[StartsSaga] public class DataDownloadMsg : IMessage {} On Fri, Apr 11, 2008 at 1:01 AM, Sergey Shishkin <...
Ayende Rahien
Ayende@...
Apr 10, 2008 10:02 pm
433
Sergey, There are two ways sagas can be started. The first is the simplest – decorate the message class with the [StartsSaga] attribute. When the bus...
Absolutely, Udi. Thank you for the quick and explanatory response! From: Udi Dahan Sent: Friday, April 11, 2008 12:05 AM To: nservicebus@yahoogroups.com ...
Sergey Shishkin
sergey.shishkin@...
Apr 10, 2008 10:10 pm
435
Hi, I came across an old post discussing API issues still not resolved. Here are my 2 cents. ... You're probably right. I'm thinking about how to keep the host...
Sergey Shishkin
sergey.shishkin@...
Apr 12, 2008 10:02 pm
436
Still reading through the list archives... PipeSingleReaderNoLock - for in-memory transport: This came across my inbox - looks like a good candidate for a...
Sergey Shishkin
sergey.shishkin@...
Apr 13, 2008 12:15 am
437
Looks like the SagaMessageHandler is able to build only one type of Saga for a given message. What if I need to start multiple Sagas by sending a single...
Sergey Shishkin
sergey.shishkin@...
Apr 13, 2008 7:37 pm
438
As far as I understood the only difference between Publish and Send is that Publish only push the message if anybody has subscribed before. Having said that, I...
Sergey Shishkin
sergey.shishkin@...
Apr 13, 2008 8:29 pm
439
I would say no, define an intermediate message handler that will send two separate messages that will start each individual sagas. On Sun, Apr 13, 2008 at...