Hi Udi, we've started evaluating nServiceBus in a project. I'm new to nServiceBus so I would like to share my thoughts about where I had problems with the NSB...
I wasn't talking about nServiceBus samples. I've put the create queues script (with my required queues) in in a project of mine as a post build event. Anyway,...
Hello all, I'm starting out with nservicebus because we have a need in one of our websites to queue requests to a service that needs to process them one at a...
We call HandleCurrentMessageLater in our message handler when we know that we can't handle the current message yet. Whenever this HandleCurrentMessageLater...
Udi, in the Global.asax of the WebAsync sample builder.Build<IBus>() occurs both before and after configuration. Whether or not this is intentional, the second...
Jane, As you can see in the stack trace, ReceiveMessageLater sends the message, just like any other, but to the local address. Can you check if you can send ...
When looking through the support for callbacks on request/reply, i found what could be a timing issue in the code. By sending the request message before...
This should be handled by the transport. MSMQ has a way to get the correlated messaged directly, for example. On Tue, Jun 3, 2008 at 2:24 AM, Chris Patterson...
Ayende Rahien
Ayende@...
Jun 2, 2008 11:31 pm
784
Actually, it's not. The correlation id with MSMQ is assigned based on the message ID, so in this case, the message correlation ID is not available until after...
Udi, Dru, thanks for suggestions. Udi, you might be right, that it does not make sense to have message priorities on service bus. Currently we are targeting to...
Udi, Please correct me if I am wrong. Precondition: service bus service is ON and is listening for upcoming messages. All N workers are peeking message from...
If this is practically a problem, and I'm not sure that it is, I think that this can be resolved by moving the logging call to after the callback creation. ...
When you say worker, I'll assume you mean worker thread, and that all of these are receiving from the same queue - the input queue for the process hosting...
Udi, ... exactly. You could introduce flag before try..catch which is set to FALSE initially. After message is read form the queue, the flag could be set to...
Hi Richard, Did you figure out what makes the messages stuck at the outgoing queue? I experience the same problem with my Vista installation on my laptop. All...
I updated to revision 135 and it suddenly worked. All the stuck messages are still there except now the full duplex samples work fine. It's quite bizarre. Dody...
I'll do this a different way - by putting a timeout on the receive operation from the queue which is shorter than that of the transaction timeout, I could...
I've been playing around with this where I add a predicate property to SubscriptionMessage, and the predicate is run when the bus calls publish. I've been...
Udi, I'm enjoying your new HttpTransport. Are you aware of what the license on the IPWorks dll might be? If we opt to use the new HttpTransport, are we free to...
[NOTE: originally posted to ALT.NET mailing list - posting here as well - sorry for the duplicate if you're on both lists...] How do you typically handle...
Glad you liked it. I don't know what the license model is. I do know that I have a license for it that allows me to distribute it, but nothing beyond that. I...
We need this too, so I'm in the processing of building a Bus/Transport pair based of of the default implementations that adds this feature. With MSMQ, you can...
I noticed a bug was recently fixed in the SpringFramework.ObjectBuilder's Helper.cs that sets the "initialized" property to true, where previously that wasn't...
This is probably an MSMQ installation issue. Try re-installing MSMQ with just the Common checkbox selected. -- Udi Dahan - The Software Simplist From:...
In terms of destination look up, it would be difficult code to write to support all the scenarios. I'd have to look if the message type you're giving me is...
That was because the helper in the builder wasn't updating its initialized property. -- Udi Dahan - The Software Simplist From: nservicebus@yahoogroups.com...
Actually, the predicate runs on the subscriber end, not at the publisher. I'm also thinking about using Linq's expression objects instead of predicates, since,...