Tagged Questions
Windows Azure AppFabric Service Bus is part of Middleware stack. Service Bus provides facilities like connecting on premises system to cloud, tunneling, eventing, service orchestration etc.
43
votes
2answers
8k views
nServiceBus vs Mass Transit vs Rhino Service Bus vs other?
Just doing some quick spikes into possibly using a messaging system to process files that are in a nicely decoupled work flow system.
What are the pro's and cons that people have found of using each ...
14
votes
2answers
2k views
Enterprise Service Bus, .NET Service Bus, NServiceBus and the wheels on the bus
Enterprise Service Bus (ESB), .NET Service Bus, NServiceBus, RhinoServiceBus, MassTransit and so on.
I'm trying to understand what each of these technologies have in common or not in common.
I ...
12
votes
3answers
640 views
What is a servicebus and when do I need one?
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".
So; what is a "service bus", and when do I ...
12
votes
7answers
3k views
.net service bus recommendations? [closed]
We are in need of a distributed architecture messaging system/service bus with the capability of Publish/Subscribe. Does anyone have any reccomendations for a framework that we can use for .net ...
11
votes
5answers
4k views
nServiceBus, Rhino Service Bus, MassTransit - Videos, Demos, Learning Resources
Hey people would love to hear about any resources you have or know about for nServiceBus, Rhino Service Bus and MassTransit.
Videos?
Blog posts?
Books?
Demo Projects etc
10
votes
7answers
3k views
C# Queue or ServiceBus with no dependencies?
Is there a product (ideally open source, but not necessary), that would enable a zero dependency deployment? every service bus or queue library I've been able to find has a dependency on one of the ...
9
votes
7answers
2k views
Why would you use a message based system?
What are the motivations for using a message based system?
I'm seeing a lot about service buses such as NServiceBus and Mass Transit and I'm wondering what the benefits of the underlying methodology ...
7
votes
8answers
833 views
C# communication between processes
I'm working with an application, and I am able to make C# scripts to run in this environment. I can import DLLs of any kind into this environment. My problem is that I'd like to enable communication ...
6
votes
4answers
522 views
Azure Service Bus equivalent?
I've been studying Azure's Service Bus and was wondering... Are there any equivalent services provided by other cloud vendors such as AWS, Rackspace or App Engine?
I read in a blog post that it would ...
6
votes
7answers
4k views
Alternatives to NServiceBus that doesn't use MSMQ
I think the title sums it all .... We have a .NET 2.0 system trying to implement a distributed pub/ sub model. I came across NServiceBus, RhinoBus and MassTransit. Unfortunately, these are MSMQ based. ...
5
votes
2answers
808 views
Enterprise Service Bus Terminology
Can anyone explain at a beginner-intermediate level the terminology of "bus", "transport" and "endpoint" in the context of an enterprise service bus? I'm a C# developer with a few years experience ...
4
votes
2answers
695 views
How does Node.js work from a network / TCP / HTTP connection perspective? Can WCF emulate this?
My understanding is that node.js is a python app that is geared towards the Linux world. Everyone seems to be quite happy with it's speed and ability to handle many concurrent connections.
I'm ...
4
votes
2answers
435 views
Cannot get self host to work on NServiceBus
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 ...
3
votes
1answer
108 views
Azure appfabric service bus load balancing + session affinity (sticky session)
I was searching through Internet, and what I've found is just it is not possible on Azure external/internal endpoint...
How does Windows Azure perform load balancing?
But what I am looking for is, ...
3
votes
3answers
676 views
NServiceBus: specifying message order
I'm using NServiceBus in it's own process (so not using the Generic Host) and I would like to have multiple message handlers for a message in a specific order. For the Generic Host, you would ...
3
votes
1answer
186 views
Good Service Tier Dev & Design: What are the common bad practises in communications tier development?
I am currently researching the best practises (at a reasonably high level) for application design for highly maintainable systems which result in minimal friction to change. By "Communications Tier" I ...
3
votes
1answer
430 views
How to work with NServiceBus in gateway mode
I've been trying to get the pubsub sample in the NServiceBus download to work in a gateway mode.
I haven't really been able to find out much detail at all about how to get NServiceBus to run in ...
2
votes
1answer
20 views
Technique for handling ServiceBus Topic subscribers running in Azure staging when using ReceiveMode.ReceiveAndDelete
We have a number of topics in the Azure SB and constantly update our environments through a VIP swap from staging to production.
When an instance is running in staging we don't want the subscribers ...
2
votes
1answer
110 views
WCF service on ServiceBus fails if call longer than 1 minute
I have a WCF Service that is hosted in a ServiceHost object. The ServiceHost is created on the OnStart method of an Azure Worker Role. Here is the code:
...
2
votes
1answer
215 views
Service Bus - Am I being dumb?
I've been looking at Mass Transit for a couple of months now, and I'm really intrigued by the possibilities. However, I don't seem to be able to get the concepts quite right. I've looked the code, and ...
2
votes
1answer
141 views
How to configure Rhino Service Bus RemoteAppDomainHost programmatically?
I see a way to configure the DefaultHost with BusConfiguration(), but do not see a way to configure the RemoteAppDomainHost programmatically.
2
votes
1answer
424 views
Is JBI dead ? Is it still a valid criteria in an ESB selection?
JBI standard is (was?) supposed to be the standard for Entreprise Service Bus, especially in terms of facility of reuse/exchange of capabilities of different ESBs (or lonely Service Engine providers)
...
2
votes
1answer
250 views
Implementing Reliable Inter-Role Communication using the AppFabric ServiceBus on Azure, IObserver pattern
I have been trying to follow this example (download the source code from a link on the site or here, but I keep running into an error that seems embedded in the example.
My procedure has been as ...
2
votes
2answers
268 views
NServicebus for Client/Server Communication?
I am starting out on a new project and have fallen in love with the concept of a Service Bus to connect your services on the backend. Since I was mostly doing Web development so far I was simply ...
2
votes
1answer
406 views
Use Rhino Service Bus on ASP.NET website with Ninject
I will like to add Rhino Service Bus to my ASP.NET web application but using Ninject as the DI Container. So far all examples I keep seeing use Castle Windsor which I don't want to use since we ...
2
votes
1answer
399 views
How can I expose a service bus with a wcf service to be consumed by a silverlight client
In a Silverlight application, instead of consuming and writing (wcf) wrappers around messages that finally get sent to the bus, I want to send use my message bus as directly as possible.
My idea was ...
2
votes
1answer
440 views
MassTransit Queue Maintenance
Is there anything built into MassTransit that can help manage the queues?
I'm specifically thinking of the error queues. I saw the thread similar to this, but I'm not looking to manage it with a ...
2
votes
1answer
596 views
How to configure pub sub for multiple subscribers with Rhino Service Bus?
I am trying to set up pub-sub between 1 publisher and multiple subscribers using Rhino Service Bus. However, all I ever seem to get is competing consumers (where messges are distributed between 1 ...
2
votes
3answers
720 views
Persistent Messaging/Service Bus - Roll my own or risk the learning curve?
We have a client application that needs to send messages to a server for various notifications. In order that the client can run occasionally connected I'm going to go with a message-queue approach. ...
2
votes
2answers
263 views
What are the .NET Services?
Announced today at PDC. Initially made up of a Service Bus, the Workflow Service, and the Access Control Service. What are they? Why would I use them?
1
vote
1answer
30 views
Enterprise Service Bus (.NET flavors) - Consuming a batch of messages at a time
Is there a way to delay the consumption of a message in an Enterprise Service Bus
until either X similar messages are ready or Y time elapsed?
My goal is to serialize and aggregate several messages ...
1
vote
3answers
80 views
When should I use a service bus in asp.net websites?
I'm thinking of distributed website, where a website (Multi-instance) is backed by an App Server (Multi-instance).
I'm struggling with defining the communication mechanism between these. I see a lot ...
1
vote
0answers
26 views
How do you map the thread context when integrating a WCF service and the service bus
I'm building an azure application with a windows client, a wcf service and a worker role on azure that handles a lot of back ground processing. In some cases I need the wcf service to hand over a task ...
1
vote
1answer
29 views
Define WCF Endpointbehaviors in Silverlight project to put message on a service bus for appFabric
I am attempting to send statuses to appFabric via a service bus from a silverlight application. Everything is tested and working except for the Silverlight application itself which does not appear to ...
1
vote
0answers
89 views
Has anyone created an FTP adapter for the Windows Azure Service Bus Brokered Messaging service?
Let us say that I have an FTP server getting XML files sent each day, and that I want to post theese to the Windows Azure Service Bus Brokered Messaging service.
Has anyone created a tool (and is ...
1
vote
2answers
65 views
Windsor composite lifestyle for asp.net process
I have an asp.net process which also consumes messages from a servicebus (MassTransit). For webrequests my database session is resolved with a PerWebRequest lifestyle.
But when the process consumes a ...
1
vote
2answers
65 views
Message handler life span
What is the recommended lifespan of a message handler?
My current implementation is raising a few problems, especially when it comes to data access (NHibernate).
Our current implementation is as ...
1
vote
1answer
134 views
NServiceBus: Handle Messages on demand
I am just new to service busses (in particular NServiceBus) and have just written my first Saga.
The saga is intended to recieve a transaction and then send messages off to validate the users id, ...
1
vote
1answer
155 views
fast service bus for small local networks and .NET
What service bus framework for .NET would you choose for small local only networks (often all participating processes even run on the same machine) if performance is an important requirement. ...
1
vote
3answers
1k views
Microsoft BizTalk Server vs Azure AppFabric Service Bus…?
We all know that BizTalk is an commercial product from Microsoft for ESB (Enterprise Service Bus).
What are other ready-made features which BizTalk supports over the AppFabric Service bus. Or in ...
1
vote
1answer
284 views
getting a usable TCP port from Windows Azure Service Bus
I am trying to get a service bus connection to connect from an Azure Application to a Server in house. There will be multiple Servers, running a mix of Java and .NET. The in house server is currently ...
1
vote
2answers
389 views
Why need Service Bus when you have WCF?
I'm reading into WCF and Service Bus topics, but I don't get the use of Service Bus in some topics. Check this image of the use of Service Bus:
...
1
vote
2answers
690 views
Why isn't Rhino.ServiceBus automatically creating all my queues?
I've setup things in a pretty similar way to the blog posts about it but I'm getting an error when at start up about one of the queues.
The msmq://localhost/colin_console_queue doesn't get created ...
1
vote
0answers
211 views
Proxy / ServiceBus / Reverse SSH
Trying to figure out the best way to easily connect a bunch of client machines running WCF service to a LAMP server on a wide area network....
Currently just set up set up each client with DynDNS, ...
1
vote
3answers
142 views
is there a servicebus solution where consumers don't consume events? (multiple consumers receive same event)
I was reading up on ActiveMQ which seems like a great implementation of a servicebus where producers can post messages and other processes can receive them.
However when reading the documentation, it ...
1
vote
3answers
360 views
Message Granularity for Message Queues and Service Buses
I'm working on an application that may generate thousands of messages in a fairly tight loop on a client, to be processed on a server. The chain of events is something like:
Client processes item, ...
0
votes
0answers
14 views
How do I disable keep-alive for a basicHttpRelayBinding to the Azure service bus?
I'm trying to disable keep-alive, and I can't seem to find any documentation on how to achieve that. Ultimately, I am occasionally getting: System.ServiceModel.CommunicationException: The underlying ...
0
votes
1answer
28 views
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 ...
0
votes
2answers
46 views
How to architect scheduled tasks in a message based architecture?
I have an order web service that has a method for creating orders. When the method is invoked, a message is send to the service bus and gets handled by an order message handler.
On a daily and ...
0
votes
2answers
106 views
Message.GetBody(); Serialization Loop
I have a problem with serializing a message from Windows Azure ServiceBus.
When i Call the "message.GetBody();" method it ends up in some kind of loop which makes my azure-emulator allocate all ...