<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for typesafe</title>
	<atom:link href="http://typesafe.be/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://typesafe.be</link>
	<description>Everything I say can&#039;t and won&#039;t be used against me...</description>
	<lastBuildDate>Wed, 17 Aug 2011 08:47:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Localizing WCF Services with MessageInspectors by typesafe</title>
		<link>http://typesafe.be/2008/08/12/localizing-wcf-services-with-messageinspectors/#comment-110</link>
		<dc:creator><![CDATA[typesafe]]></dc:creator>
		<pubDate>Wed, 17 Aug 2011 08:47:32 +0000</pubDate>
		<guid isPermaLink="false">http://typesafe2.wordpress.com/?p=32#comment-110</guid>
		<description><![CDATA[@Julius, indeed, I skipped a few thing in my post. You could add some config in your web.config, however, I&#039;d go for an Attribute (e.g. &lt;code&gt;[Localized] public Foo Operation()&lt;/code&gt;)that applies the behavior to an operation or service.]]></description>
		<content:encoded><![CDATA[<p>@Julius, indeed, I skipped a few thing in my post. You could add some config in your web.config, however, I&#8217;d go for an Attribute (e.g. <code>[Localized] public Foo Operation()</code>)that applies the behavior to an operation or service.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Localizing WCF Services with MessageInspectors by Julius Bartkus</title>
		<link>http://typesafe.be/2008/08/12/localizing-wcf-services-with-messageinspectors/#comment-109</link>
		<dc:creator><![CDATA[Julius Bartkus]]></dc:creator>
		<pubDate>Wed, 17 Aug 2011 07:53:53 +0000</pubDate>
		<guid isPermaLink="false">http://typesafe2.wordpress.com/?p=32#comment-109</guid>
		<description><![CDATA[aren&#039;t you missing some web.conf configuration]]></description>
		<content:encoded><![CDATA[<p>aren&#8217;t you missing some web.conf configuration</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Localizing WCF Services with MessageInspectors by Michael Sync</title>
		<link>http://typesafe.be/2008/08/12/localizing-wcf-services-with-messageinspectors/#comment-90</link>
		<dc:creator><![CDATA[Michael Sync]]></dc:creator>
		<pubDate>Fri, 01 Apr 2011 10:04:01 +0000</pubDate>
		<guid isPermaLink="false">http://typesafe2.wordpress.com/?p=32#comment-90</guid>
		<description><![CDATA[Great.. I love it.. I&#039;m writing one similar thing but when I saw your code, it looks better than mine so I&#039;m gonna use yours instead of my own one.. :) 

Thanks,
Michael Sync]]></description>
		<content:encoded><![CDATA[<p>Great.. I love it.. I&#8217;m writing one similar thing but when I saw your code, it looks better than mine so I&#8217;m gonna use yours instead of my own one.. :) </p>
<p>Thanks,<br />
Michael Sync</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flexible WCF Exception Shielding by typesafe</title>
		<link>http://typesafe.be/2009/02/17/flexible-wcf-exception-shielding/#comment-81</link>
		<dc:creator><![CDATA[typesafe]]></dc:creator>
		<pubDate>Sun, 02 Jan 2011 13:08:05 +0000</pubDate>
		<guid isPermaLink="false">http://typesafe2.wordpress.com/?p=36#comment-81</guid>
		<description><![CDATA[Ok, first off, a big sorry for the ridiculous late reply!

I used it in my own production system for quite a while. However, no real special cases there so it might be not very relevant to you...]]></description>
		<content:encoded><![CDATA[<p>Ok, first off, a big sorry for the ridiculous late reply!</p>
<p>I used it in my own production system for quite a while. However, no real special cases there so it might be not very relevant to you&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flexible WCF Exception Shielding by jvolkar</title>
		<link>http://typesafe.be/2009/02/17/flexible-wcf-exception-shielding/#comment-80</link>
		<dc:creator><![CDATA[jvolkar]]></dc:creator>
		<pubDate>Wed, 15 Dec 2010 14:09:24 +0000</pubDate>
		<guid isPermaLink="false">http://typesafe2.wordpress.com/?p=36#comment-80</guid>
		<description><![CDATA[Issue/Caveat:  Callbacks.  I made the following minor tweak to the attribute code.

public void AddBindingParameters(ContractDescription contractDescription, ServiceEndpoint endpoint,
                                         BindingParameterCollection bindingParameters)
        {
            foreach (OperationDescription op in contractDescription.Operations)
            {
                if (op.IsOneWay)
                    continue; //Do NOT add FaultDescription to callbacks (one-way operations)...

                foreach (Type knownFaultType in m_knownFaultTypes)
                {
                    // Add fault contract if it is not yet present
                    if (!op.Faults.Any(f =&gt; f.DetailType == knownFaultType))
                        op.Faults.Add(new FaultDescription(knownFaultType.Name) {DetailType = knownFaultType, Name = knownFaultType.Name});
                }
            }
        }]]></description>
		<content:encoded><![CDATA[<p>Issue/Caveat:  Callbacks.  I made the following minor tweak to the attribute code.</p>
<p>public void AddBindingParameters(ContractDescription contractDescription, ServiceEndpoint endpoint,<br />
                                         BindingParameterCollection bindingParameters)<br />
        {<br />
            foreach (OperationDescription op in contractDescription.Operations)<br />
            {<br />
                if (op.IsOneWay)<br />
                    continue; //Do NOT add FaultDescription to callbacks (one-way operations)&#8230;</p>
<p>                foreach (Type knownFaultType in m_knownFaultTypes)<br />
                {<br />
                    // Add fault contract if it is not yet present<br />
                    if (!op.Faults.Any(f =&gt; f.DetailType == knownFaultType))<br />
                        op.Faults.Add(new FaultDescription(knownFaultType.Name) {DetailType = knownFaultType, Name = knownFaultType.Name});<br />
                }<br />
            }<br />
        }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flexible WCF Exception Shielding by jvolkar</title>
		<link>http://typesafe.be/2009/02/17/flexible-wcf-exception-shielding/#comment-79</link>
		<dc:creator><![CDATA[jvolkar]]></dc:creator>
		<pubDate>Wed, 15 Dec 2010 13:19:12 +0000</pubDate>
		<guid isPermaLink="false">http://typesafe2.wordpress.com/?p=36#comment-79</guid>
		<description><![CDATA[Very very cool, this is exactly what I was looking for.  Now for the big question:  Has anyone made use of this is production systems?  Any known issues or caveats?]]></description>
		<content:encoded><![CDATA[<p>Very very cool, this is exactly what I was looking for.  Now for the big question:  Has anyone made use of this is production systems?  Any known issues or caveats?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About inetmgr by Managing IIS configuration using Ruby &#171; typesafe</title>
		<link>http://typesafe.be/inetmgr/#comment-63</link>
		<dc:creator><![CDATA[Managing IIS configuration using Ruby &#171; typesafe]]></dc:creator>
		<pubDate>Fri, 15 Oct 2010 11:19:48 +0000</pubDate>
		<guid isPermaLink="false">http://typesafe.be/#comment-63</guid>
		<description><![CDATA[[...] .Net thoughts by Gino Heyman   AboutAbout&#160;inetmgr    &#171; Solving the Trailing Slash Problem in ASP.Net MVC using a [...]]]></description>
		<content:encoded><![CDATA[<p>[...] .Net thoughts by Gino Heyman   AboutAbout&nbsp;inetmgr    &laquo; Solving the Trailing Slash Problem in ASP.Net MVC using a [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating WCF Proxies with LinFu by Tiago</title>
		<link>http://typesafe.be/2009/07/19/creating-wcf-proxies-with-linfu/#comment-13</link>
		<dc:creator><![CDATA[Tiago]]></dc:creator>
		<pubDate>Tue, 10 Nov 2009 15:38:53 +0000</pubDate>
		<guid isPermaLink="false">http://typesafe2.wordpress.com/?p=57#comment-13</guid>
		<description><![CDATA[Hi,

Could you post a sample project using your solution?

Thanks]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Could you post a sample project using your solution?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

