MassTransit is an open source enterprise service bus (ESB) for .NET
0
votes
0answers
19 views
Masstransit: Can not run code from within Visual Studio (QueueNotFound)
I'm trying to run some sample code from the MassTransit project:
var bus = ServiceBusFactory.New(sbc =>
{
sbc.UseMsmq().Validate();
sbc.ReceiveFrom("msmq://localhost/app1_queue");
...
1
vote
1answer
74 views
Implement nested interface of generic parent class with ironpython
I wan't to implement the following C#/.Net interface with IronPython:
public static class Consumes<TMessage> where TMessage : class
{
public interface All
{
void Consume(TMessage ...
1
vote
1answer
72 views
MassTransit Subscriptions and Receiving Own Messages
I am trying to implement a proof of concept service bus using MassTransit. I have three applications which need to communicate changes of a common entity type between each other. So when the user ...
1
vote
1answer
42 views
To “Pause” processing of subscriptions, should I dispose ServiceBus or Unsubscribe?
I am trying to come up a good way to "pause" the processing of messages with a Mass Transit ServiceBus. Basically I have a requirement to leave my Windows Services running, but temporarily stop ...
1
vote
0answers
95 views
MassTransit implementation: sometimes message not received
I am fighting with a quite strange problem... I have implemented a service bus communication (through MassTransit + MSMQ) between WCF services, with .NET 4.0 on Windows 7 Ultimate. When the services ...
1
vote
1answer
53 views
Newbie - Is a Consumer Queue necessary in order for Publishing to work in MassTransit
I am trying to get my head around MassTransit and RabbitMQ and queuing( day 1)
The question I have is whether a "Consumer is necessary in order for queuing to work in MT. The reason I ask is because ...
0
votes
1answer
54 views
Is it possible to stop MassTransit Runtime Services from requiring DTC?
I'm getting started using MassTransit and need to use the RuntimeServices to manage subscriptions and timeouts. The environment I'm installing into is an externally facing network divided up in to ...
0
votes
1answer
21 views
MassTransit having business logic / behavior in sagas
The event handlers for sagas seem to have business logic / behavior embedded in them.
I'm referring to the Starbucks example.
Is this done intentionally due the "sample app" nature of the example?
...
1
vote
2answers
244 views
Simple Example of Masstransit with RabbitMQ
I want to use MassTransit bus with RabbitMQ. But I am not able to find a simple example. I am looking for example which will get me started.
What I have tried.
googled : But most the examples are ...
0
votes
1answer
74 views
Probably a really dumb MassTransit misunderstanding
I'm a new to MassTransit and one thing I don't understand is this:
How do you create a bus between multiple .net ServiceBuses?
Take this code:
class Program
{
static void Main(string[] args)
...
1
vote
1answer
113 views
How to resend a message to a specific subscriber?
Background:
We have a messaging subsystem based on MassTransit. It works great, pumps thousands of messages with only minor issues. So far, failed messages were automatically pushed to xxx_error ...
2
votes
2answers
90 views
What are some approaches to correlating/mapping entities between disparate systems using a service bus architecture?
I am investigating employing a service bus architecture in our enterprise for coordinating data and business processes between systems in our environment.
Our situation is typical: customer-facing ...
2
votes
1answer
125 views
MassTransit via MSMQ is not work, why
Here everyone
here is my code for MassTransit.
On the subscriber console
namespace ConsoleSubscriber
{
class Program
{
static void Main(string[] args)
{
...
0
votes
1answer
176 views
Benefits of using NServicebus or Masstransit with TIBCO EMS
We are exploring the design to incorporate TIBCO EMS into our .NET based system. From what I read, broth NServiceBus and MassTransit can use TIBCO EMS as the transportation communication layer. My ...
0
votes
1answer
122 views
MassTransit and SimpleInjector [closed]
I'm reviewing the MassTransit Distributed Application Framework for .NET. According to the website MassTransit has been built from the beginning with the concept of an IoC container being involved and ...
1
vote
1answer
115 views
MassTransit messages not picked up
I'm using MassTransit version 2.7.0 to communicate between a web service and a web site. The web service publishes messages and the website subscribes to them.
Publisher service:
ServiceBus = ...
1
vote
1answer
204 views
Masstransit consumer death - Peek()
I am curious as to if MassTransit consumers can Peek() a MSMQ queue before actually retrieving the msg.
What the steps/process is:
1) Msg sent to queue
2) Consumers gets it and has to do a DB ...
0
votes
1answer
343 views
Asynchronous pages - Mass Transit - Service Bus
I am trying to lean how to use Mass Transit found here.
I have made a project with two consoles and can get them talk to each other. Essentially I just followed the samples that came with it and kind ...
0
votes
2answers
168 views
Bus Configuration with Autofac: Issue with RabbitMQ vs Loopback?
For some reason I can not post to the masstransit google group, even though I joined, I am told that I do not have permission to post to this group. So I am going to post here...
Now for my problem:
...
1
vote
1answer
208 views
Where to initialize MassTransit in an Asp.Net MVC 4 application?
I have a simple solution with 3 projects:
Asp.Net MVC4 Web app - the main website
Console App - task runner
Console App - task runner
I wish to use MassTrasnsit to serve as a queue so that actions ...
0
votes
1answer
167 views
Timeout publishing message in MassTransit request/response scenario
I am trying to set up a MassTransit request/response scenario. The issue is that the message never arrives at the consumer. I get a “timeout waiting for response” error on PublishRequest. No other ...
11
votes
3answers
1k views
NServiceBus vs MassTransit
I'm struggling with a pros and cons list regarding NServiceBus and MassTransit..
Now i know there is allready a thread in here, but it doesn't really answer my questions..
Here is what I've read so ...
1
vote
1answer
63 views
AppHarbor MassTransit CloudAMQP constantly consuming 1,9kB/s
After making it work:
AppHarbor MassTransit CloudAMQP throws Exception None of the specified endpoints were reachable
Now I see in CloudAMQP Management that I have 2 connections constanly consuming ...
0
votes
1answer
103 views
Is it common practice to have a shared and dedicated assembly or library for messages in a distributed system?
I'm talking a crack at some of the concepts behind distributed domain driven design and I'm building a proof of concept. I have three C# solutions that have specific responsibility within the overall ...
1
vote
1answer
122 views
AppHarbor MassTransit CloudAMQP throws Exception None of the specified endpoints were reachable
I am trying to use Masstransit with CloudAMQP LEMUR from my AppHarbor application, but I am receiving the exception:
"None of the specified endpoints were reachable"
This is how Masstransit is ...
3
votes
2answers
399 views
Does a CQRS project need a messaging framework like NServiceBus?
The last 6 months learning curve have been challenging with CQRS and DDD the main culprits.
It has been fun and we are 1/2 way through our project and the area I have not had time to delve into is a ...
1
vote
1answer
324 views
MassTransit Saga - Errors & Inconsistencies
I've implemented a masstransit saga that works as should, a lot of times. However, there are times when the messages go to the error queue or just seem to disappear. I'm using RabbitMQ.
I'd like to ...
4
votes
2answers
557 views
MassTransit Losing Messages - Rabbit MQ - When publisher and consumer endpoint names are the same,
We've encountered a situation where MassTransit is losing messages if you create a publisher and consumer using the same endpoint name.
Note the code below; if I use a different endpoint name for ...
8
votes
1answer
1k views
What does MassTransit add to RabbitMQ?
What is the benefit of building on top of MassTransit compared to building directly on top of RabbitMQ?
I believe one benefit provided by MassTransit is 'type' exchange (publish subscribe by ...
1
vote
0answers
552 views
MassTransit/RabbitMQ - Requests going to error queue inconsistently
I have a web API that has been built using ServiceStack, that communicates with a TopShelf srvice back-end via MassTransit, sitting on RabbitMQ. Most of the time, things work fine, however sometimes ...
3
votes
3answers
659 views
MassTransit 2.6.1 Request/Response pattern - Response times out
I'm looking at MassTransit as a ServiceBus implementation to use in a web project.
I am playing with the Request/Response pattern and am seeing a long delay between the consumer receiving the message ...
0
votes
1answer
123 views
How can you do message interception in MassTransit?
I want to inspect each message before it hits consumers or sagas.
I think I want an IInboundMessageInterceptor but I can't see an easy way to inject a custom one.
How can I achieve message ...
1
vote
1answer
668 views
How do you configure multiple message consumers in MassTransit?
I'm looking at using MassTransit to publish a event from one process to all other processes that care about that event. In my environment, several processes that are subscribed to that event could be ...
1
vote
1answer
523 views
MassTransit and event versus command publishing
I'm new to MassTransit, and I miss something in my understanding.
Let's say I have a server farm were all nodes can do the same job. The application framework is CQRS's styled. That means I have two ...
1
vote
1answer
140 views
Message tracing in mass transit
I use masstransit as service bus and I use pub/sub pattern for my application.
I would like to figure out if I can track message that comes up from the bus to subscribers.
I use json serializer.
...
4
votes
2answers
271 views
MT in the cloud with AppHarbor and CloudAMQP
Anybody successfully got MassTransit working with AppHarbor and CloudAMQP?
I am having a bear of a time with it.
I have the publisher (the web site) sending messages, but the server (a background ...
2
votes
1answer
545 views
Messages do not reach subscriber in masstransit
I have two projects run in different processes and RMQ deployed on a separate machine.
Here is my publisher code
Bus.Initialize(config =>
{
config.UseRabbitMq();
...
0
votes
1answer
472 views
Competing Consumers from load balancing application in MassTransit/RabbitMQ
I have just finished creating an API where the requests from the API are forwarded to a back-end service via MassTransit/RabbitMQ using the Request/Response pattern. We are now looking at pushing this ...
0
votes
1answer
196 views
MassTransit process message in the future
I'm evaluating MassTransit with RabbitMQ for a project and we want to be able to delay the processing of a message to a certain time.
The objective is the following:
A user does some things that ...
1
vote
1answer
678 views
MassTransit MSMQ Pub with multi-sub. When is RuntimeServices ready?
I've set up a simple test comprising a publisher with two subscribers, all running on a single machine using MSMQ and MassTransit (2.1.1) RuntimeServices which is using a local Sql Server database.
...
4
votes
1answer
330 views
MassTransit with RabbitMQ - what address to RecieveFrom
We have configured an active/active cluster of RabbitMQ's in our test environment.
We connect using MassTransit specifying ReceiveFrom("rabbitmq://cluster_machine_a/some_queue?ha=true").
Obviously, ...
1
vote
1answer
284 views
How to ensure good performance with a MassTransit Saga that adds an item to an NHibernate-persisted IList
I have a saga that has 3 states -
public static State Initial { get; set; }
public static State ReceivingRows { get; set; }
public static State Completed { get; set; }
It transitions ...
1
vote
1answer
346 views
How to ensure message reception order in MassTransit
I have a saga that has 3 states; Initial, ReceivingRows, Completed -
public static State Initial { get; set; }
public static State ReceivingRows { get; set; }
public static State ...
0
votes
2answers
299 views
MassTransit with RabbitMQ: MT timing out on second Request/Response
Working with a Request/Response scenario with MassTransit and RabbitMQ.
When doing a simple Request/Reply it works multiple times.
If I publish a message in the request handler it works on the ...
4
votes
2answers
710 views
MassTransit with RabbitMQ: recovering the error queue
This is probably a very simple answer, but I'm not seeing an obvious solution in the MassTransaction docs or forums.
When you have some messages that have been moved over to the error queue in ...
2
votes
2answers
874 views
Competing Consumers in Mass Transit with RabbitMQ
I've implemented a simple publisher/consumer set with MassTransit, and I want to have the consumers read the messages from the same queue. However, when I run it, I see a large portion of the messages ...
1
vote
1answer
151 views
Masstransit Not Handling Correct Values
I´m playing with MassTransit with a simple example and I don´t know what I´m doing wrong, because I don´t receive the correct data.
I have a simple asp.net-mvc app with the following code in the ...
2
votes
1answer
456 views
How to map an IDictionary<string, string> with Fluent NHibernate's class mapping, and test that mapping?
My MassTransit saga has only one field that will not map correctly. It is -
public virtual IDictionary<string, string> Rows
{
get { return _rows; }
set { _rows = value; ...
6
votes
1answer
615 views
Masstransit - No messages added to MSMQ when receiver service isn't started
My application consists of an ASP.NET MVC 3 application and a Windows Service, both on the same box. The MVC application uses masstransit to place messages on an MSMQ queue. The service uses ...
1
vote
1answer
840 views
Subscribe to remote queue using RabbitMQ
What is the suggested approach for setting up a subscription to a message published by a remote endpoint using Mass Transit and RabbitMQ?
In our case, most pub/sub is local, but it will be convenient ...
