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