<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Agile .NET</title>
	<atom:link href="http://vladhorby.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://vladhorby.wordpress.com</link>
	<description>Ideas &#38; Gotchas</description>
	<lastBuildDate>Fri, 08 May 2009 23:44:41 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Me by Heriberto</title>
		<link>http://vladhorby.wordpress.com/about/#comment-209</link>
		<dc:creator>Heriberto</dc:creator>
		<pubDate>Fri, 08 May 2009 23:44:41 +0000</pubDate>
		<guid isPermaLink="false">#comment-209</guid>
		<description>Javascript rules!!!!!

Saludos!</description>
		<content:encoded><![CDATA[<p>Javascript rules!!!!!</p>
<p>Saludos!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WCSF – Using Session State in Unit Tests by D</title>
		<link>http://vladhorby.wordpress.com/2007/09/28/wcsf-%e2%80%93-using-session-state-in-unit-tests/#comment-208</link>
		<dc:creator>D</dc:creator>
		<pubDate>Tue, 31 Mar 2009 16:02:54 +0000</pubDate>
		<guid isPermaLink="false">http://vladhorby.wordpress.com/2007/09/28/wcsf-%e2%80%93-using-session-state-in-unit-tests/#comment-208</guid>
		<description>I&#039;m having trouble getting this to work in the case where my presenter has a constructor that requires a controller (with injection dependency).

For example, when my presenter has the following constructor, I get an &quot;Invalid Type Owner for Dynamic Method&quot; error:
   
        public MyPresenter([CreateNew] IMyController controller)
        {
            _controller = controller;
        }

If I have a default constructor, the everything works fine...but my presenter doesn&#039;t have a controller.

Is there a way to configure my MockCompositeContainer so that I can use the dependency injection constructor on the presenter?</description>
		<content:encoded><![CDATA[<p>I&#8217;m having trouble getting this to work in the case where my presenter has a constructor that requires a controller (with injection dependency).</p>
<p>For example, when my presenter has the following constructor, I get an &#8220;Invalid Type Owner for Dynamic Method&#8221; error:</p>
<p>        public MyPresenter([CreateNew] IMyController controller)<br />
        {<br />
            _controller = controller;<br />
        }</p>
<p>If I have a default constructor, the everything works fine&#8230;but my presenter doesn&#8217;t have a controller.</p>
<p>Is there a way to configure my MockCompositeContainer so that I can use the dependency injection constructor on the presenter?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Me by vasu</title>
		<link>http://vladhorby.wordpress.com/about/#comment-206</link>
		<dc:creator>vasu</dc:creator>
		<pubDate>Tue, 15 Jul 2008 02:05:51 +0000</pubDate>
		<guid isPermaLink="false">#comment-206</guid>
		<description>Thanks for the post. You can define section names in the profile file and tweak the parser to read modules defined under sections. This will help do a lazy load a set of files in a profile catalog.

I beleive we are having the same interest. I am an Indian live in US and plannig to start my own vernture. Please share your experience on ur start up.</description>
		<content:encoded><![CDATA[<p>Thanks for the post. You can define section names in the profile file and tweak the parser to read modules defined under sections. This will help do a lazy load a set of files in a profile catalog.</p>
<p>I beleive we are having the same interest. I am an Indian live in US and plannig to start my own vernture. Please share your experience on ur start up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CenterParent for non-modal forms by Vivek</title>
		<link>http://vladhorby.wordpress.com/2007/10/16/centerparent-for-non-modal-forms/#comment-114</link>
		<dc:creator>Vivek</dc:creator>
		<pubDate>Thu, 08 Nov 2007 16:47:22 +0000</pubDate>
		<guid isPermaLink="false">http://vladhorby.wordpress.com/2007/10/16/centerparent-for-non-modal-forms/#comment-114</guid>
		<description>The reason for this seems to stem from the Windows API.

My understanding is that modal dialogs are implemented by the DialogBox native function and one of the possible styles is DS_CENTER which specifies its to be centered on owner window, however modeless dialogs are created with the CreateDialog family of functions and are displayed by the ShowWindow() function, so they behave like any old window and the DS_CENTER style makes no difference.</description>
		<content:encoded><![CDATA[<p>The reason for this seems to stem from the Windows API.</p>
<p>My understanding is that modal dialogs are implemented by the DialogBox native function and one of the possible styles is DS_CENTER which specifies its to be centered on owner window, however modeless dialogs are created with the CreateDialog family of functions and are displayed by the ShowWindow() function, so they behave like any old window and the DS_CENTER style makes no difference.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WCSF – Using Session State in Unit Tests by Vlad</title>
		<link>http://vladhorby.wordpress.com/2007/09/28/wcsf-%e2%80%93-using-session-state-in-unit-tests/#comment-109</link>
		<dc:creator>Vlad</dc:creator>
		<pubDate>Tue, 06 Nov 2007 14:26:46 +0000</pubDate>
		<guid isPermaLink="false">http://vladhorby.wordpress.com/2007/09/28/wcsf-%e2%80%93-using-session-state-in-unit-tests/#comment-109</guid>
		<description>You have to let the container create the service:
&lt;code&gt;ModuleContainerLocatorService mlcsCurrent = ccTest.Services.AddNew &lt; ModuleContainerLocatorService &gt; ();&lt;/code&gt;

Let me know if this helps.</description>
		<content:encoded><![CDATA[<p>You have to let the container create the service:<br />
<code>ModuleContainerLocatorService mlcsCurrent = ccTest.Services.AddNew &lt; ModuleContainerLocatorService &gt; ();</code></p>
<p>Let me know if this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WCSF – Using Session State in Unit Tests by Mavrick</title>
		<link>http://vladhorby.wordpress.com/2007/09/28/wcsf-%e2%80%93-using-session-state-in-unit-tests/#comment-107</link>
		<dc:creator>Mavrick</dc:creator>
		<pubDate>Tue, 06 Nov 2007 08:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://vladhorby.wordpress.com/2007/09/28/wcsf-%e2%80%93-using-session-state-in-unit-tests/#comment-107</guid>
		<description>Hi,
I tried most possible ways from my side to get the ModuleContainerLocatorService in Test Module(* i e in my Test Method), 
CompositionContainer ccTest = new CompositionContainer();
ccTest.InitializeRootContainer(new WCSFBuilder());
ccTest.InitializeContainer();
ModuleContainerLocatorService mlcsCurrent = new ModuleContainerLocatorService(null);
ccTest.Services.Add(mlcsCurrent);
object oTest = ccTest.BuildNewItem(typeof(DefaultViewPresenter));

But still i am getting servicemissingException when it returns from controller of main module.

Please reply where I am doing mistake..</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I tried most possible ways from my side to get the ModuleContainerLocatorService in Test Module(* i e in my Test Method),<br />
CompositionContainer ccTest = new CompositionContainer();<br />
ccTest.InitializeRootContainer(new WCSFBuilder());<br />
ccTest.InitializeContainer();<br />
ModuleContainerLocatorService mlcsCurrent = new ModuleContainerLocatorService(null);<br />
ccTest.Services.Add(mlcsCurrent);<br />
object oTest = ccTest.BuildNewItem(typeof(DefaultViewPresenter));</p>
<p>But still i am getting servicemissingException when it returns from controller of main module.</p>
<p>Please reply where I am doing mistake..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TDD &#8211; Create test objects automatically by Vivek</title>
		<link>http://vladhorby.wordpress.com/2007/09/13/tdd-create-test-objects-automatically/#comment-45</link>
		<dc:creator>Vivek</dc:creator>
		<pubDate>Tue, 02 Oct 2007 16:19:28 +0000</pubDate>
		<guid isPermaLink="false">http://vladhorby.wordpress.com/2007/09/13/tdd-create-test-objects-automatically/#comment-45</guid>
		<description>Hmmmm....

Only +/- Random(100) for System.DateTime?

Many subtle ( and not so subtle ) errors would show up if you made that 20000 or something ( Think YnK problems ) where n = [2000, 2036, etc, etc ]</description>
		<content:encoded><![CDATA[<p>Hmmmm&#8230;.</p>
<p>Only +/- Random(100) for System.DateTime?</p>
<p>Many subtle ( and not so subtle ) errors would show up if you made that 20000 or something ( Think YnK problems ) where n = [2000, 2036, etc, etc ]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TDD &#8211; Create test objects automatically by TDD - Test similar objects automatically &#171; Startupping echoes</title>
		<link>http://vladhorby.wordpress.com/2007/09/13/tdd-create-test-objects-automatically/#comment-15</link>
		<dc:creator>TDD - Test similar objects automatically &#171; Startupping echoes</dc:creator>
		<pubDate>Tue, 18 Sep 2007 22:08:46 +0000</pubDate>
		<guid isPermaLink="false">http://vladhorby.wordpress.com/2007/09/13/tdd-create-test-objects-automatically/#comment-15</guid>
		<description>[...] TDD - Create test objects&#160;automatically [...]</description>
		<content:encoded><![CDATA[<p>[...] TDD &#8211; Create test objects&nbsp;automatically [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
