<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Binsor : The Castle Windsor XML Configuration Killer</title>
	<atom:link href="http://elegantcode.com/2008/07/18/binsor-the-castle-windsor-xml-configuration-killer/feed/" rel="self" type="application/rss+xml" />
	<link>http://elegantcode.com/2008/07/18/binsor-the-castle-windsor-xml-configuration-killer/</link>
	<description></description>
	<lastBuildDate>Tue, 16 Mar 2010 00:33:33 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jan Van Ryswyck</title>
		<link>http://elegantcode.com/2008/07/18/binsor-the-castle-windsor-xml-configuration-killer/comment-page-1/#comment-34754</link>
		<dc:creator>Jan Van Ryswyck</dc:creator>
		<pubDate>Mon, 06 Oct 2008 17:48:30 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2008/07/18/binsor-the-castle-windsor-xml-configuration-killer/#comment-34754</guid>
		<description>Binsor is part of the RhinoCommons library (Rhino.Commons.Binsor). These are seperate assemblies if I&#039;m not mistaken.</description>
		<content:encoded><![CDATA[<p>Binsor is part of the RhinoCommons library (Rhino.Commons.Binsor). These are seperate assemblies if I&#8217;m not mistaken.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://elegantcode.com/2008/07/18/binsor-the-castle-windsor-xml-configuration-killer/comment-page-1/#comment-34744</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Mon, 06 Oct 2008 15:32:36 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2008/07/18/binsor-the-castle-windsor-xml-configuration-killer/#comment-34744</guid>
		<description>I want to use Binsor, but I&#039;m not interested in using &#039;Rhino.Commons&#039; - I use Windsor, I don&#039;t use this other library in my project.

Is this possible?

(I didn&#039;t see a &#039;Binsor&#039; project in the svn either?)</description>
		<content:encoded><![CDATA[<p>I want to use Binsor, but I&#8217;m not interested in using &#8216;Rhino.Commons&#8217; &#8211; I use Windsor, I don&#8217;t use this other library in my project.</p>
<p>Is this possible?</p>
<p>(I didn&#8217;t see a &#8216;Binsor&#8217; project in the svn either?)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin Nilsson</title>
		<link>http://elegantcode.com/2008/07/18/binsor-the-castle-windsor-xml-configuration-killer/comment-page-1/#comment-34227</link>
		<dc:creator>Martin Nilsson</dc:creator>
		<pubDate>Fri, 03 Oct 2008 10:17:45 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2008/07/18/binsor-the-castle-windsor-xml-configuration-killer/#comment-34227</guid>
		<description>I&#039;m doing something similar as Mike by letting my services implement an interface (IService, IRepository, etc) and then auto registering them in the container.

http://blog.viabrains.com/2008/10/register-services-in-windsor.html</description>
		<content:encoded><![CDATA[<p>I&#8217;m doing something similar as Mike by letting my services implement an interface (IService, IRepository, etc) and then auto registering them in the container.</p>
<p><a href="http://blog.viabrains.com/2008/10/register-services-in-windsor.html" rel="nofollow">http://blog.viabrains.com/2008/10/register-services-in-windsor.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Hadlow</title>
		<link>http://elegantcode.com/2008/07/18/binsor-the-castle-windsor-xml-configuration-killer/comment-page-1/#comment-27887</link>
		<dc:creator>Mike Hadlow</dc:creator>
		<pubDate>Mon, 21 Jul 2008 09:00:31 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2008/07/18/binsor-the-castle-windsor-xml-configuration-killer/#comment-27887</guid>
		<description>Bah! forgot to escape my angle brackets.

            windsorContainer.Register(AllTypes
                                   .Of&lt;IController&gt;()
                                   .FromAssembly(GetControllerAssembly())
                                   .Configure(c =&gt; c.LifeStyle.Transient.Named(c.Implementation.Name.ToLower())));</description>
		<content:encoded><![CDATA[<p>Bah! forgot to escape my angle brackets.</p>
<p>            windsorContainer.Register(AllTypes<br />
                                   .Of&lt;IController&gt;()<br />
                                   .FromAssembly(GetControllerAssembly())<br />
                                   .Configure(c =&gt; c.LifeStyle.Transient.Named(c.Implementation.Name.ToLower())));</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Hadlow</title>
		<link>http://elegantcode.com/2008/07/18/binsor-the-castle-windsor-xml-configuration-killer/comment-page-1/#comment-27886</link>
		<dc:creator>Mike Hadlow</dc:creator>
		<pubDate>Mon, 21 Jul 2008 08:58:56 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2008/07/18/binsor-the-castle-windsor-xml-configuration-killer/#comment-27886</guid>
		<description>Binsor is also on my list of things to try. I&#039;m really looking forward to Ayende&#039;s book. However, the urgency has dimmed somewhat since the fluent registration API has been available for Windsor. You can write stuff like this now for registering your controllers:

windsorContainer.Register(AllTypes
                                   .Of()
                                   .FromAssembly(GetControllerAssembly())
                                   .Configure(c =&gt; c.LifeStyle.Transient.Named(c.Implementation.Name.ToLower())));

That&#039;s the registration for an ASP.NET MVC app, thus the Name.ToLower() hack.

And you get intellisense!

Note this is currently only on the trunk, not the binary release.</description>
		<content:encoded><![CDATA[<p>Binsor is also on my list of things to try. I&#8217;m really looking forward to Ayende&#8217;s book. However, the urgency has dimmed somewhat since the fluent registration API has been available for Windsor. You can write stuff like this now for registering your controllers:</p>
<p>windsorContainer.Register(AllTypes<br />
                                   .Of()<br />
                                   .FromAssembly(GetControllerAssembly())<br />
                                   .Configure(c =&gt; c.LifeStyle.Transient.Named(c.Implementation.Name.ToLower())));</p>
<p>That&#8217;s the registration for an ASP.NET MVC app, thus the Name.ToLower() hack.</p>
<p>And you get intellisense!</p>
<p>Note this is currently only on the trunk, not the binary release.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Valeriu Caraulean</title>
		<link>http://elegantcode.com/2008/07/18/binsor-the-castle-windsor-xml-configuration-killer/comment-page-1/#comment-27841</link>
		<dc:creator>Valeriu Caraulean</dc:creator>
		<pubDate>Sun, 20 Jul 2008 08:38:11 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2008/07/18/binsor-the-castle-windsor-xml-configuration-killer/#comment-27841</guid>
		<description>My lazyness teached me the shortened versions of Binsor&#039;s declarations:

component IRepository, NHRepository
facility WcfFacility

Shorter, easier to read. 
Works if you don&#039;t want to give specific ids to your components .</description>
		<content:encoded><![CDATA[<p>My lazyness teached me the shortened versions of Binsor&#8217;s declarations:</p>
<p>component IRepository, NHRepository<br />
facility WcfFacility</p>
<p>Shorter, easier to read.<br />
Works if you don&#8217;t want to give specific ids to your components .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dew Drop - July 19, 2008 &#124; Alvin Ashcraft's Morning Dew</title>
		<link>http://elegantcode.com/2008/07/18/binsor-the-castle-windsor-xml-configuration-killer/comment-page-1/#comment-27815</link>
		<dc:creator>Dew Drop - July 19, 2008 &#124; Alvin Ashcraft's Morning Dew</dc:creator>
		<pubDate>Sat, 19 Jul 2008 13:26:14 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2008/07/18/binsor-the-castle-windsor-xml-configuration-killer/#comment-27815</guid>
		<description>[...] Binsor: The Castle Windsor XML Configuration Killer (Jan Van Ryswyck) [...]</description>
		<content:encoded><![CDATA[<p>[...] Binsor: The Castle Windsor XML Configuration Killer (Jan Van Ryswyck) [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
