3

多くの例/チュートリアルを読みました(MSDNのAyendeのAlexandriaを含む)。

しかし、いくらか更新されたアセンブリを取得すること自体が障害であることが証明されています。Castle.Windsorの正しいバージョンを取得した後、app.configファイルで正しいセクションが見つかりません。Rhino Service BusとCastleBootstrapperの両方の構文も変更されており、今では完全に混乱しています。Hibernating Rhinosに関する「ドキュメント」は、私が始めるのに本当に役立っていません。

Castle Windsor v。3.0(ベータ版)または2.5.3を使用したRhino Service Busの動作サンプルを誰かに教えてもらえますか、すでにオンラインになっているものを教えてください。稼働中ですか?

4

1 に答える 1

8

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

于 2011-10-14T14:42:21.470 に答える