<?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: Integrating StructureMap with WCF</title>
	<atom:link href="http://lostechies.com/jimmybogard/2008/07/30/integrating-structuremap-with-wcf/feed/" rel="self" type="application/rss+xml" />
	<link>http://lostechies.com/jimmybogard/2008/07/30/integrating-structuremap-with-wcf/</link>
	<description>Strong opinions, weakly held</description>
	<lastBuildDate>Wed, 22 May 2013 13:39:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
	<item>
		<title>By: jbogard</title>
		<link>http://lostechies.com/jimmybogard/2008/07/30/integrating-structuremap-with-wcf/#comment-5751</link>
		<dc:creator>jbogard</dc:creator>
		<pubDate>Wed, 17 Apr 2013 21:18:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2008/07/29/integrating-structuremap-with-wcf.aspx#comment-5751</guid>
		<description>Ha! Nice.</description>
		<content:encoded><![CDATA[<p>Ha! Nice.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Still</title>
		<link>http://lostechies.com/jimmybogard/2008/07/30/integrating-structuremap-with-wcf/#comment-5750</link>
		<dc:creator>Jason Still</dc:creator>
		<pubDate>Wed, 17 Apr 2013 20:28:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2008/07/29/integrating-structuremap-with-wcf.aspx#comment-5750</guid>
		<description>I know this is old, but it helped me a ton and worked *almost* flawlessly.  The only change I had to make was in the StructureMapServiceHostFactory constructor.  StructureMapConfiguration isn&#039;t a thing anymore, but the below code worked as the contents of the constructor.  Hopefully this will save the next person who comes along a few minutes of confusion.

ObjectFactory.Initialize(x =&gt;
            {
                x.Scan(scan =&gt;
                {
                    scan.TheCallingAssembly();
                    scan.WithDefaultConventions();
                });
            });</description>
		<content:encoded><![CDATA[<p>I know this is old, but it helped me a ton and worked *almost* flawlessly.  The only change I had to make was in the StructureMapServiceHostFactory constructor.  StructureMapConfiguration isn&#8217;t a thing anymore, but the below code worked as the contents of the constructor.  Hopefully this will save the next person who comes along a few minutes of confusion.</p>
<p>ObjectFactory.Initialize(x =&gt;<br />
            {<br />
                x.Scan(scan =&gt;<br />
                {<br />
                    scan.TheCallingAssembly();<br />
                    scan.WithDefaultConventions();<br />
                });<br />
            });</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bas Hamer</title>
		<link>http://lostechies.com/jimmybogard/2008/07/30/integrating-structuremap-with-wcf/#comment-4273</link>
		<dc:creator>Bas Hamer</dc:creator>
		<pubDate>Wed, 01 Feb 2012 03:43:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2008/07/29/integrating-structuremap-with-wcf.aspx#comment-4273</guid>
		<description>Thanks; I used this code as is and it worked great; one thing to watch out for is that out have to specify the DLL it came from in the .svc file.

I used it in http://willbe.codeplex.com/ ; a simple compile time AOP framework</description>
		<content:encoded><![CDATA[<p>Thanks; I used this code as is and it worked great; one thing to watch out for is that out have to specify the DLL it came from in the .svc file.</p>
<p>I used it in http://willbe.codeplex.com/ ; a simple compile time AOP framework</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RollerSMB</title>
		<link>http://lostechies.com/jimmybogard/2008/07/30/integrating-structuremap-with-wcf/#comment-4210</link>
		<dc:creator>RollerSMB</dc:creator>
		<pubDate>Wed, 21 Dec 2011 12:07:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2008/07/29/integrating-structuremap-with-wcf.aspx#comment-4210</guid>
		<description>Does ServiceStack even work with Structuremap?  From what I can see, it doesn&#039;t seem to, seems to be pretty linear.</description>
		<content:encoded><![CDATA[<p>Does ServiceStack even work with Structuremap?  From what I can see, it doesn&#8217;t seem to, seems to be pretty linear.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: question about chapter 6... (adaptation)</title>
		<link>http://lostechies.com/jimmybogard/2008/07/30/integrating-structuremap-with-wcf/#comment-3978</link>
		<dc:creator>question about chapter 6... (adaptation)</dc:creator>
		<pubDate>Sat, 08 Oct 2011 12:33:51 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2008/07/29/integrating-structuremap-with-wcf.aspx#comment-3978</guid>
		<description>[...] tell me.  3) here is some very very good info to use StructureMap to do IoC with WCF to anyone: here  4) Finally I have to use NInject in my Silverlight project because StructureMap is not yet [...]</description>
		<content:encoded><![CDATA[<p>[...] tell me.  3) here is some very very good info to use StructureMap to do IoC with WCF to anyone: here  4) Finally I have to use NInject in my Silverlight project because StructureMap is not yet [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://lostechies.com/jimmybogard/2008/07/30/integrating-structuremap-with-wcf/#comment-3658</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Fri, 05 Aug 2011 00:48:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2008/07/29/integrating-structuremap-with-wcf.aspx#comment-3658</guid>
		<description>Ha, never heard of ServiceStack, thanks for pointing it out!</description>
		<content:encoded><![CDATA[<p>Ha, never heard of ServiceStack, thanks for pointing it out!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vasilio Ruzanni</title>
		<link>http://lostechies.com/jimmybogard/2008/07/30/integrating-structuremap-with-wcf/#comment-3656</link>
		<dc:creator>Vasilio Ruzanni</dc:creator>
		<pubDate>Thu, 04 Aug 2011 22:07:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2008/07/29/integrating-structuremap-with-wcf.aspx#comment-3656</guid>
		<description>Yep, thanks, exactly what I expected. I think exactly the same way. We have ServiceStack and Protocol Buffers these days.

Btw, I&#039;d prefer ServiceStack even if I ever need the SOAP endpoint.</description>
		<content:encoded><![CDATA[<p>Yep, thanks, exactly what I expected. I think exactly the same way. We have ServiceStack and Protocol Buffers these days.</p>
<p>Btw, I&#8217;d prefer ServiceStack even if I ever need the SOAP endpoint.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://lostechies.com/jimmybogard/2008/07/30/integrating-structuremap-with-wcf/#comment-3654</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Thu, 04 Aug 2011 18:09:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2008/07/29/integrating-structuremap-with-wcf.aspx#comment-3654</guid>
		<description>I don&#039;t need it, there are simpler solutions that require less code and less configuration, or are more stable/reliable/durable.

Also, no one&#039;s asked me to build one. If someone required a SOAP endpoint, then yeah, I&#039;d go that route.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t need it, there are simpler solutions that require less code and less configuration, or are more stable/reliable/durable.</p>
<p>Also, no one&#8217;s asked me to build one. If someone required a SOAP endpoint, then yeah, I&#8217;d go that route.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vasilio Ruzanni</title>
		<link>http://lostechies.com/jimmybogard/2008/07/30/integrating-structuremap-with-wcf/#comment-3653</link>
		<dc:creator>Vasilio Ruzanni</dc:creator>
		<pubDate>Thu, 04 Aug 2011 14:03:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2008/07/29/integrating-structuremap-with-wcf.aspx#comment-3653</guid>
		<description>Jimmy,
Any comments on why no more WCF?</description>
		<content:encoded><![CDATA[<p>Jimmy,<br />
Any comments on why no more WCF?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kekerain2011</title>
		<link>http://lostechies.com/jimmybogard/2008/07/30/integrating-structuremap-with-wcf/#comment-3604</link>
		<dc:creator>Kekerain2011</dc:creator>
		<pubDate>Wed, 13 Jul 2011 05:45:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2008/07/29/integrating-structuremap-with-wcf.aspx#comment-3604</guid>
		<description>http://www.bwo168.com/</description>
		<content:encoded><![CDATA[<p><a href="http://www.bwo168.com/" rel="nofollow">http://www.bwo168.com/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
