github(https://github.com/hibernating-rhinos/rhino-esb)から最新のRhino-ESBビットをダウンロードしてビルドした後、開始するのは非常に簡単です。
Rhino-ESBを介してバックエンドと通信するasp.netMVCアプリケーションがあります。
asp.net MVC側:
global.asax.csの場合:
private IWindsorContainer _container;
protected void Application_Start()
{
_container = new WindsorContainer();
new RhinoServiceBusConfiguration().UseCastleWindsor(_container).Configure();
_container.Install(new YourCustomInstaller());
//Don't forget to start the bus
_container.Resolve<IStartableServiceBus>().Start();
ControllerBuilder.Current.SetControllerFactory(new WindsorControllerFactory(_container));
}
YourCustomInstaller
実装する必要があり、コントローラーをメソッドIWindsorInstaller
のコンテナーに登録する必要があることに注意してください。Install
public void Install(Castle.Windsor.IWindsorContainer container, Castle.MicroKernel.SubSystems.Configuration.IConfigurationStore store)
{
container.Register(Component
.For<HomeController>().LifeStyle.PerWebRequest.ImplementedBy<HomeController>());
WindsorControllerFactory
また、コントローラーの作成をコンテナーに内部的に委任することにも注意してください。
protected override IController GetControllerInstance(RequestContext requestContext, Type controllerType)
{
if (controllerType == null)
return null;
return (IController)this.container.Resolve(controllerType);
}
最後になりましたが、web.configで構成を提供してください
<configSections>
<section name="rhino.esb" type="Rhino.ServiceBus.Config.BusConfigurationSection, Rhino.ServiceBus"/>
</configSections>
<rhino.esb>
<bus threadCount="1"
numberOfRetries="5"
endpoint="rhino.queues://localhost:31316/Client"
queueIsolationLevel="ReadCommitted"
name="Client"/>
<messages>
<add name="YourMessagesNamespace"endpoint="rhino.queues://localhost:31315/Backend"/>
</messages>
</rhino.esb>
この構成では、バックエンドがlocalhost:31315でキューを実行し、クライアントがlocalhost:31316でキューを実行することを前提としています。
バックエンド側:コンソールアプリケーションとして実行していると仮定すると、
static void Main(string[] args)
{
IWindsorContainer container;
container = new WindsorContainer();
new RhinoServiceBusConfiguration()
.UseCastleWindsor(container)
.Configure();
var host = new RemoteAppDomainHost(typeof(YourBootstrapper));
host.Start();
Console.WriteLine("Starting to process messages");
Console.ReadLine();
YourBootstrapper
クラスが実装していることに注意してくださいCastleBootstrapper
public class YourBootstrapper: Rhino.ServiceBus.Castle.CastleBootStrapper
{
protected override void ConfigureContainer()
{
Container.Register(Component.For<OneOfYourMessages>());
}
}
消費者を登録しているOneOfYourMessages