nservicebus Questions
1
Solved
I'm looking to gain a better understanding of why it is recommended to never Publish() messages from a website using NServiceBus (NServiceBus Documentation, scroll about two thirds of the way down)...
Obligor asked 12/1, 2011 at 17:55
2
Solved
I had a bug in my application that cause a number of messages to be moved into the error queue. Now that I have fixed the bug, is there a simple way to move them back to the original queue so they ...
Ricercare asked 14/12, 2010 at 17:47
2
Solved
I have this code in my app .NET application using NServiceBus:
Bus.Send<IServiceStarted>(e =>
{
e.ServiceInfo = ReadServiceInfo();
e.EventTime = DateProvider.Now;
});
How would you...
Avigation asked 11/10, 2010 at 18:49
4
I am curious if it even makes consider BizTalk for the implementation of a pub/sub messaging architecture (basically what you can do with NServiceBus or MassTransit is all I really need). My manage...
Amphiaster asked 14/9, 2010 at 4:33
1
Solved
I have a WinService that can't start because NServiceBus throws "Service cannot be started. System.Messaging.MessageQueueException (0x80004005): Access to Message Queuing system is denied."
This i...
Collaborate asked 16/9, 2010 at 23:25
1
Solved
In Visual Studio 2010, I have a web application and a console application (actually a service using NServiceBus, but it runs locally as a console application) that I want to both startup when I hit...
Corking asked 12/9, 2010 at 23:27
3
Solved
Is there a way to using NServiceBus with Asp.Net MVC 2? I want to send a request message from a Asp.Net MVC2 Application to a Service, which handle the message and reply with a response message. is...
Nicolle asked 8/9, 2010 at 14:17
3
Solved
I am learning about NServiceBus and MSMQ. I was told that transactional queues in MSMQ are BAD and using them is really bad for performance. Does anyone know why? I am guessing this comes from the ...
Digamma asked 18/8, 2010 at 18:28
2
Solved
Using version 2.0.0.1219
I am attempting to self host both a subscriber and publisher with NServiceBus and VS2010. The programs run and initialize but I cannot get the messages to move across. The...
Flute asked 25/8, 2010 at 15:49
1
Solved
I am considering using a Network Load Balancer to load balance messages between my subscriber instances, instead of using the NServiceBus distributor (which is basically just a software load-balanc...
Pomcroy asked 18/8, 2010 at 18:3
1
Solved
With simple Pub/Sub in NServiceBus, I know that if my subscriber app is not running, then the published messages will just accumulate in the queue until they can be processed. But where do they acc...
Simmonds asked 18/8, 2010 at 18:34
1
Solved
I am new to NServcie bus and Im was trying to implement Publication and subscription of messages .This is the error I'm getting
Exception when starting endpoint, error has been logged. Reason: Th...
Barrett asked 10/8, 2010 at 4:7
3
Solved
I have heard talk about the NServiceBus, but I haven't really understood what it is. They claim to be "The most popular open-source service bus for .net".
What is a service bus, and when ...
Chuddar asked 27/4, 2010 at 20:25
2
Solved
Enterprise Service Bus (ESB), .NET Service Bus (Windows Azure AppFabric Service Bus), NServiceBus, RhinoServiceBus, MassTransit and so on.
I'm trying to understand what each of these technologies ...
Thebault asked 14/4, 2010 at 3:51
2
Solved
I'm looking into the ESB thing with .net like NServiceBus etc , can someone highlight what kind of real world business problems can be solved (forget the technical edge) ? And is this used to integ...
Fideicommissary asked 7/4, 2010 at 13:33
1
Solved
Is the communication bi-directional in NServiceBus?
a subscriber can also publish/send message?
Kaneshakang asked 13/3, 2010 at 5:52
1
Solved
What is the point of IHandleMessages<T> vs IMessageHandler<T> in NServiceBus 2.0?
One interface derives from the other and does not appear to add any new methods or new constraints on ...
Opuscule asked 26/1, 2010 at 9:41
2
Solved
We are encountering an issue where our ASP.NET MVC app is restarting for an unknown reason. The cause of the shut down is
"A subdirectory in the Bin application directory was changed or renamed."...
Wanhsien asked 6/1, 2010 at 1:47
1
I'm just geting started with NServiceBus and can't figure out what I'm missing when configuring the MsmqTransport in code. If I configure the publisher like this;
IBus bus = Configure.With()
.Cas...
Paynter asked 18/11, 2009 at 14:47
1
From my understanding NServiceBus executes the Handle method of an IMessageHandler within a transaction, if an exception propagates out of this method, then NServiceBus will ensure the message is p...
Briscoe asked 17/10, 2009 at 10:36
1
Solved
I have an NServiceBus application for which a given message may not be processed due to some external event not having taken place. Because this other event is not an NSB event I can't implement sa...
Milreis asked 21/8, 2009 at 11:4
© 2022 - 2024 — McMap. All rights reserved.