Questions tagged [rhino-servicebus]

Rhino service bus is a developer-friendly service bus for .NET

Rhino service bus is a developer-friendly service bus () for .NET

26 questions
0
votes
1 answer

Get exception when Rhino ServiceBus is starting

I have my system divided into 2 parts. Both parts communicate with each other using Rhino Service Bus. There is no problem on Windows 7, but if I start it anywhere else (WinXP, Server 2003, ... ) I get the following exception when I call…
Lufi
  • 71
  • 5
0
votes
1 answer

Rhino service bus programmatic configuration

I have two hosts - A and B I use following code snippet to configure service bus in host A. host.BusConfiguration(c => c.Threads(1).Retries(1) .Bus(endpointA.AbsoluteUri, "name", true) .Receive(typeof(MyMessage).Namespace,…
Gopher
  • 917
  • 6
  • 18
0
votes
3 answers

So, maybe this is a case where I should go for a SOA?

Scenario: I have a CRM system, and my app. When a new order is created in the CRM system, myApp should do some stuff (create a project room for the order), and write something (project room url) back to the CRM system. So I could easily implement…
Larsi
  • 4,654
  • 7
  • 46
  • 75
0
votes
1 answer

Rhino Service Bus via rhino.queues - error sending messages

Im getting an error when I try to send a message from a Test Project, This is the exception message Could not find a message owner for C2C.RhinoUtil.EventServiceBus at …
cocacho
  • 51
  • 6
0
votes
0 answers

Rhino Service Bus - Load Balance \ Distributor capabilities

I'm looking into Rhino Service Bus for a project instead of using commercial NServiceBus (which I know from my workplace). In NServiceBus there's the concept of a distributor, which load balances tasks between server automatically to allow scale up.…
developer82
  • 13,237
  • 21
  • 88
  • 153
0
votes
1 answer

Using NHibernate to update status table during long running process

I have inherited a project that implements multiple long running processes. Each of those processes update a status table that is then reflected on the UI via ajax polling. These process are running in a background application that uses Rhino…
Joe Young
  • 1,076
  • 1
  • 14
  • 27
0
votes
1 answer

How to configure Rhino ESB with multiple servers

I'm working on a web application that will use Rhino Service Bus to send messages that are then consumed by a windows service on the app server. I've been able to test this on my machine (hosting the web app and the windows service) and it works…
Matt M
  • 3,699
  • 5
  • 48
  • 76
0
votes
2 answers

Rhino Service Bus transactions

I was able to create a test application using Rhino Service Bus and Sql Server Express. I have an MVC 4 front end that creates a message and sends it to a queue and also creates a record in my database table. I have a windows service that grabs the…
Matt M
  • 3,699
  • 5
  • 48
  • 76
0
votes
1 answer

Rhino Service Bus Transport Is Stopping Randomly

I'm debugging a console app that processes a data file and fires events using a service bus. On startup, the program starts the bus: ObjectFactory.GetInstance().Start(); Then for each record in the file, it fires something…
bendytree
  • 13,095
  • 11
  • 75
  • 91
0
votes
1 answer

Using RabbitMQ with Rhino Service Bus

I've read Oren Eini's MSDN article on Rhino ESB and it mentions that it's possible to use ActiveMQ, RabbitMQ or others in place of MSMQ or Rhino Queues. But I'm having trouble finding any examples of using anything other than MSMQ or Rhino Queues.…
Mark J Miller
  • 4,751
  • 5
  • 44
  • 74
0
votes
0 answers

Why does a message get dispatched to all Sagas?

I'm using Rhino Service Bus and I've two sagas, SaveCustomerSaga and a ProcessReceiptSaga both of these operations send UpdateInvoicesCommand to a standard message consumer. Neither of the Sagas are completed until the Invoices have been updated.…
Aaron
  • 579
  • 1
  • 4
  • 12
1
2