Friday, July 11, 2014

How do I get started with NServiceBus?

I've tried to follow the example here, which suggests one set up two different applications in Visual Studio and to try to talk between them. The first application would be the client which would talk into the second application, a server which would listen. Both applications would have a main class library which would be prepped with NServiceBus with a NuGet command like so:

Install-Package NServiceBus.Host -ProjectName YOURPROJECTNAMEHERE

 
 

In each application, the first class library would inherit from a second class library, which needs to be identical across the two classes, which is for holding the message types. One would prep it with NuGet like so:

Install-Package NServiceBus.Interfaces -ProjectName OTHERPROJECT

 
 

...but having said all that, I have yet to get it to work and now I have something else to do.

No comments:

Post a Comment