servicebus

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 to expose the service bus directly as a wcf service, or, in other terms, I want to bidirectionally pub/sub over the wire. Has this been do...

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 need one? ...

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 gateway mode. How do I setup the publisher/server in gateway mode? When I did try I received an access denied exception which would either be d...

Subscribing to MSMQ over the internet

I haven't been able to find a clear answer to this problem. Is there a good way to subscribe to a MSMQ through the internet? Ideally I need security both in authentication and encryption for this connection. But I would like the subscriber to act just like any other client that would be subscribed on the local network. I believe I have a...

Rhino ServiceBus: Sagas with multiple messages

I have a saga that can handle multiple messages like so: public class OrderSaga : ISaga<Order> , InitiatedBy<StartOrderSaga> , Orchestrates<CancelOrder> , Orchestrates<PaymentForOrderReceived> , Orchestrates<CheckOrderWasPaid> , Orchestrates<OrderAbandoned> , Orchestrates<CheckOrderHasBee...

Has anyone managed to get jdotnetservices working on Android ?

I am trying to use jdotnetservices (http://www.jdotnetservices.com/), which is a java SDK for Windows Azure AppFabric, in an Android application. I have had to make some tweaks but only minor ones because jdotnetservices is written to target Java 1.6 and Android uses 1.5. I can get it to compile and run OK but I'm getting errors when I ...

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 be possible to install ESB solutions such as Apache ServiceMix into IaaS providers' instances. Yet, I am not sure if they offer the same k...

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 mean web services, service buses and general network transmission technologies. From your experiences, what have you found to be the comm...

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 already use Ninject. Are there any tutorials out there which show how to add Rhino Service Bus to an ASP.NET web application without a direct de...

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 publisher acts like it is posting, no errors, but the subscriber receives nothing. Here is the subscriber config <?xml version="1.0"?> <c...

Publish/subscribe with large files as message payloads

We have an existing system that processes a lot of files on an ongoing basis. Roughly speaking, about 3 million files a day that can range in size from a few kilobytes to in excess of 50 MB. These files go through a few different stages of processing from the time they are received to when they are finished being consumed, depending on...

Sagas and ServiceBuses

Hi, I am re-engineering a system to use a new platform, including Silverlight and an HTTP-push notification mechanism (which has a servicebus-like interface). I've seen examples of sagas and I think they would be of benefit to our project. But I have a dilemma, do I: i) implement saga-like functionality on top of our existing lightweig...

NServiceBus - Beginner Tutorials

I have recently read some articles about service buses and would like to to give it a go. Googled to find a good beginner tutorial on NserviceBus, bug could not find a one so far. Anyone aware of a good beginner tutorial on NServiceBus? (to start from very basic level) seen some literature on internet, but they do not seem to be begi...

Which IPC to use?

Background I got a client/server solution which is using a mix of services (like IUserService to add/remove/fetch etc) and messages (like UserCreated, CallArrived etc). Each client authenticates when connecting. It's a software as service solution and therefore all messages may not be transported to all connected clients. Therefore I ne...