Running
When using Visual Studio 2017 the NuGet packages should be restored automatically. If you find that they do not or if you are using an older version of Visual Studio please execute the following in a Visual Studio command prompt:
cd {extraction-folder}\Shuttle.Esb.Samples\Shuttle.DependencyInjection
nuget restore
Once you have opened the Shuttle.DependencyInjection.sln
solution in Visual Studio set the following projects as startup projects:
- Shuttle.DependencyInjection.Client
- Shuttle.DependencyInjection.Server
Implementation
By default Shuttle.Esb does not require a dependency injection container. Shuttle makes use of an IMessageHandlerFactory
implementation to create message handlers. If no dependency injection container is required one could stick with the DefaultMessageHandlerFactory
instantiated by default.
The DefaultMessageHandlerFactory
requires message handlers that have a default (parameterless) constructor; else the instantiation of the handler will fail. In this guide we will use the WindsorContainer
that is part of the Castle Project.
In this guide we’ll create the following projects:
- a Console Application called
Shuttle.DependencyInjection.Client
- a Console Application called
Shuttle.DependencyInjection.Server
- a Class Library called
Shuttle.DependencyInjection.EMail
that will contain a fake e-mail service implementation - a Class Library called
Shuttle.DependencyInjection.Messages
that will contain all our message classes
Messages
Create a new class library called
Shuttle.DependencyInjection.Messages
with a solution calledShuttle.DependencyInjection
Note: remember to change the Solution name.
RegisterMemberCommand
Rename the
Class1
default file toRegisterMemberCommand
and add aUserName
property.
namespace Shuttle.DependencyInjection.Messages
{
public class RegisterMemberCommand
{
public string UserName { get; set; }
}
}
Client
Add a new
Console Application
to the solution calledShuttle.DependencyInjection.Client
.
Install the
Shuttle.Esb.Msmq
nuget package.
This will provide access to the Msmq IQueue
implementation and also include the required dependencies.
Install the
Shuttle.Core.Ninject
nuget package.
This will provide access to the Ninject implementation.
Add a reference to the
Shuttle.DependencyInjection.Messages
project.
Program
Implement the main client code as follows:
using System;
using Ninject;
using Shuttle.Core.Ninject;
using Shuttle.DependencyInjection.Messages;
using Shuttle.Esb;
namespace Shuttle.DependencyInjection.Client
{
internal class Program
{
private static void Main(string[] args)
{
var container = new NinjectComponentContainer(new StandardKernel());
ServiceBus.Register(container);
using (var bus = ServiceBus.Create(container).Start())
{
string userName;
while (!string.IsNullOrEmpty(userName = Console.ReadLine()))
{
bus.Send(new RegisterMemberCommand
{
UserName = userName
});
}
}
}
}
}
App.config
Create the shuttle configuration as follows:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name='serviceBus' type="Shuttle.Esb.ServiceBusSection, Shuttle.Esb"/>
</configSections>
<serviceBus>
<messageRoutes>
<messageRoute uri="msmq://./shuttle-server-work">
<add specification="StartsWith" value="Shuttle.DependencyInjection.Messages" />
</messageRoute>
</messageRoutes>
</serviceBus>
</configuration>
This tells shuttle that all messages that are sent and have a type name starting with Shuttle.DependencyInjection.Messages
should be sent to endpoint msmq://./shuttle-server-work
.
To demonstrate the dependency injection we will create a fake e-mail service that we intend using in the server endpoint.
Add a new
Class Library
to the solution calledShuttle.DependencyInjection.EMail
.
IEMailService
Add an interface called
IEMailService
and implement it as follows:
namespace Shuttle.DependencyInjection.EMail
{
public interface IEMailService
{
void Send(string name);
}
}
EMailService
Rename the default
Class1
file toEMailService
and implement theIEMailService
interfaces as follows:
using System;
using System.Threading;
namespace Shuttle.DependencyInjection.EMail
{
public class EMailService : IEMailService
{
public void Send(string name)
{
Console.WriteLine();
Console.WriteLine("[SENDING E-MAIL] : name = '{0}'", name);
Console.WriteLine();
Thread.Sleep(3000); // simulate communication wait time
Console.WriteLine();
Console.WriteLine("[E-MAIL SENT] : name = '{0}'", name);
Console.WriteLine();
}
}
}
Server
Add a new
Console Application
to the solution calledShuttle.DependencyInjection.Server
.
Install both the
Shuttle.Esb.Msmq
andShuttle.Core.Ninject
nuget packages.
This will provide access to the Msmq IQueue
implementation and also include the required dependencies.
It will also include the Ninject implementation of the container interfaces.
Install the
Shuttle.Core.ServiceHost
nuget package.
This will enable the console application to run as a console or be installed as a Windows service.
Add references to both the
Shuttle.DependencyInjection.Messages
andShuttle.DependencyInjection.EMail
projects.
Program
Implement the
Program
class as follows:
using Shuttle.Core.ServiceHost;
namespace Shuttle.DependencyInjection.Server
{
public class Program
{
public static void Main()
{
ServiceHost.Run<Host>();
}
}
}
This simply executes the Host
class implementation.
Host
Add a
Host
class and implement theIServiceHost
interface as follows:
using Ninject;
using Shuttle.Core.Ninject;
using Shuttle.Core.ServiceHost;
using Shuttle.DependencyInjection.EMail;
using Shuttle.Esb;
namespace Shuttle.DependencyInjection.Server
{
public class Host : IServiceHost
{
private IServiceBus _bus;
private StandardKernel _kernel;
public void Stop()
{
_kernel.Dispose();
_bus.Dispose();
}
public void Start()
{
_kernel = new StandardKernel();
_kernel.Bind<IEMailService>().To<EMailService>();
var container = new NinjectComponentContainer(_kernel);
ServiceBus.Register(container);
_bus = ServiceBus.Create(container).Start();
}
}
}
App.config
Add an
Application Configuration File
item to create theApp.config
and populate as follows:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name='serviceBus' type="Shuttle.Esb.ServiceBusSection, Shuttle.Esb"/>
</configSections>
<serviceBus>
<inbox
workQueueUri="msmq://./shuttle-server-work"
errorQueueUri="msmq://./shuttle-error" />
</serviceBus>
</configuration>
RegisterMemberHandler
Add a new class called
RegisterMemberHandler
that implements theIMessageHandler<RegisterMemberCommand>
interface as follows:
using System;
using Shuttle.Core.Infrastructure;
using Shuttle.DependencyInjection.EMail;
using Shuttle.Esb;
using Shuttle.DependencyInjection.Messages;
namespace Shuttle.DependencyInjection.Server
{
public class RegisterMemberHandler : IMessageHandler<RegisterMemberCommand>
{
private readonly IEMailService _emailService;
public RegisterMemberHandler(IEMailService emailService)
{
Guard.AgainstNull(emailService, "emailService");
_emailService = emailService;
}
public void ProcessMessage(IHandlerContext<RegisterMemberCommand> context)
{
Console.WriteLine();
Console.WriteLine("[MEMBER REGISTERED] : user name = '{0}'", context.Message.UserName);
Console.WriteLine();
_emailService.Send(context.Message.UserName);
}
}
}
This will write out some information to the console window. The injected e-mail service will also be invoked and you’ll see the result in the console window.
Run
Set both the client and server projects as the startup.
Execute
Execute the application.
The client application will wait for you to input a user name. For this example enter my user name and press enter:
You have now implemented dependency injection for message handlers.