<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com - Stories tagged with WCF</title>
    <description>the latest stories tagged with 'WCF' from DotNetKicks.com</description>
    <link>http://www.dotnetkicks.com/</link>
    <language>en-us</language>
    <copyright>Atweb Publishing Ltd.</copyright>
    <docs>http://backend.userland.com/rss</docs>
    <generator>DotNetKicks.com - .NET links, community driven</generator>
    <ttl>30</ttl>
    <item>
      <title>Difference between Web Services(ASPX) and WCF</title>
      <description>This article proposes the information for the beginners and explains why to upgrade from Web Services to WCF.. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fexpertchandu.blogspot.com%2f2009%2f06%2fdifference-between-web-services-and-wcf.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fexpertchandu.blogspot.com%2f2009%2f06%2fdifference-between-web-services-and-wcf.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wcf/Difference_between_Web_Services_ASPX_and_WCF</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wcf/Difference_between_Web_Services_ASPX_and_WCF</guid>
      <pubDate>Sat, 27 Jun 2009 06:05:13 GMT</pubDate>
    </item>
    <item>
      <title>How to authorize a WCF service in the anonymous internet</title>
      <description>I had to program an authorization mechanism between a client application and a webservice that is hosted by a internet provider. In such a case, we have two different domains in place, no windows integrated authentication, no certificate or something else. The old fashioned way in that case is to use a SoapHeader in order to send informations about the user to the web service . That's the point where the trail starts . &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fjachman.wordpress.com%2f2009%2f06%2f24%2fhow-to-authorize-a-wcf-service-in-the-anonymous-internet%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjachman.wordpress.com%2f2009%2f06%2f24%2fhow-to-authorize-a-wcf-service-in-the-anonymous-internet%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wcf/How_to_authorize_a_WCF_service_in_the_anonymous_internet</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wcf/How_to_authorize_a_WCF_service_in_the_anonymous_internet</guid>
      <pubDate>Wed, 24 Jun 2009 19:22:19 GMT</pubDate>
    </item>
    <item>
      <title>Global error handling in WCF</title>
      <description>Dave shows us how to easily add global error handling to WCF external methods without having to expand the responsiblity of each and every exernal method. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fhaveyougotwoods.com%2farchive%2f2009%2f06%2f24%2fcreating-a-global-error-handler-in-wcf.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fhaveyougotwoods.com%2farchive%2f2009%2f06%2f24%2fcreating-a-global-error-handler-in-wcf.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wcf/Global_error_handling_in_WCF</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wcf/Global_error_handling_in_WCF</guid>
      <pubDate>Wed, 24 Jun 2009 17:36:27 GMT</pubDate>
    </item>
    <item>
      <title>(De)Serializing multiple generic collections w DataContractSerializer </title>
      <description>The DataContractSerializer class is the successor of the XmlSerializer class. Introduced together with WCF. This one is also being used by WCF for serialization by default. You can of course always switch back to the good old XmlSerializer if you want to. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmshelp.be%2fserializing-and-deserializing-multiple-generic-collections-using-datacontractserializer-252.htm"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmshelp.be%2fserializing-and-deserializing-multiple-generic-collections-using-datacontractserializer-252.htm" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wcf/De_Serializing_multiple_generic_collections_w_DataContractSerializer</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wcf/De_Serializing_multiple_generic_collections_w_DataContractSerializer</guid>
      <pubDate>Sat, 20 Jun 2009 13:25:24 GMT</pubDate>
    </item>
    <item>
      <title>How to host a WCF service that uses Castle Windsor in a Windows Servic</title>
      <description>Currently I'm working on a web application project that also uses a WCF service for some operations. We are a big fan of using ALT.NET and are using Castle Windsor to do IoC (Inversion of Control)/Dependency Injection. The problem we were having was the small delay to start up the worker process in IIS. Which is not much you can do about within IIS. (As far as I know) Except for maybe making a wake up service that calls a simple method every x minutes. Just to keep the worker process alive. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmshelp.be%2fhow-to-host-a-wcf-service-that-uses-castle-windsor-in-a-windows-service-247.htm"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmshelp.be%2fhow-to-host-a-wcf-service-that-uses-castle-windsor-in-a-windows-service-247.htm" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wcf/How_to_host_a_WCF_service_that_uses_Castle_Windsor_in_a_Windows_Servic</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wcf/How_to_host_a_WCF_service_that_uses_Castle_Windsor_in_a_Windows_Servic</guid>
      <pubDate>Fri, 19 Jun 2009 17:46:43 GMT</pubDate>
    </item>
    <item>
      <title>EntitySpaces DynamicQuery Serialization Part II (WCF and Silverlight)</title>
      <description>This stuff is hot guys and gals. We are asking Jon Davis to write an entirely new Silverlight demo that will showcase our DynamicQuery feature running under Silverlight inside the browser and hitting a WCF service on the server. We cannot wait, this is so slick . Here's another sneak peak post. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.entityspaces.net%2fblog%2f2009%2f06%2f17%2fEntitySpaces%2bDynamicQuery%2bSerialization%2bPart%2bII%2bWCF%2bAnd%2bSilverlight.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.entityspaces.net%2fblog%2f2009%2f06%2f17%2fEntitySpaces%2bDynamicQuery%2bSerialization%2bPart%2bII%2bWCF%2bAnd%2bSilverlight.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/EntitySpaces_DynamicQuery_Serialization_Part_II_WCF_and_Silverlight</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/EntitySpaces_DynamicQuery_Serialization_Part_II_WCF_and_Silverlight</guid>
      <pubDate>Wed, 17 Jun 2009 13:41:41 GMT</pubDate>
    </item>
    <item>
      <title>EntitySpaces - WCF DynamicQuery Serialization</title>
      <description>We have decided to use the WCF DataContract approach when serializing our enhanced DynamicQuery's. In our upcoming alpha release our DynamicQuery classes now live in a separate assembly that can execute on the client side along with your EntitySpaces proxies without requiring either the EntitySpaces.Core or the EntitySpaces.Interfaces assemblies. The EntitySpaces.DynamicQuery assembly (only 52k in size) is also compatible with Silverlight and can run down inside of the browser. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.entityspaces.net%2fblog%2f2009%2f06%2f14%2fEntitySpaces%2bNdash%2bWCF%2bDynamicQuery%2bSerialization.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.entityspaces.net%2fblog%2f2009%2f06%2f14%2fEntitySpaces%2bNdash%2bWCF%2bDynamicQuery%2bSerialization.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/EntitySpaces_WCF_DynamicQuery_Serialization</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/EntitySpaces_WCF_DynamicQuery_Serialization</guid>
      <pubDate>Sun, 14 Jun 2009 03:46:43 GMT</pubDate>
    </item>
    <item>
      <title>Unity: WCF service resolution container extension</title>
      <description>how to create a WCF service resolution container extension &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2fguardian%2findex.php%2f2009%2f06%2f08%2funity-wcf-service-resolution-container-extension%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2fguardian%2findex.php%2f2009%2f06%2f08%2funity-wcf-service-resolution-container-extension%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wcf/Unity_WCF_service_resolution_container_extension</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wcf/Unity_WCF_service_resolution_container_extension</guid>
      <pubDate>Mon, 08 Jun 2009 14:13:53 GMT</pubDate>
    </item>
    <item>
      <title>Why Windows Communitcation Foundation? What is difference between WCF </title>
      <description>Previously .Net developers stick with two ides to achieve distributed computing. .Net remoting and web service
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.ranksheet.com%2fSolutions%2fkb-AspdotNet-2dot0%2f4_Windows-Communitcation-Foundation-versus-Webservice.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.ranksheet.com%2fSolutions%2fkb-AspdotNet-2dot0%2f4_Windows-Communitcation-Foundation-versus-Webservice.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wcf/Why_Windows_Communitcation_Foundation_What_is_difference_between_WCF</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wcf/Why_Windows_Communitcation_Foundation_What_is_difference_between_WCF</guid>
      <pubDate>Fri, 05 Jun 2009 11:58:07 GMT</pubDate>
    </item>
    <item>
      <title>Resuing types in Silverlight Service References</title>
      <description>How to reuse types across mulitlple WCF Service References in Silverlight. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fcompiledexperience.com%2fBlog%2fpost%2fResuing-types-in-Silverlight-Service-References.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcompiledexperience.com%2fBlog%2fpost%2fResuing-types-in-Silverlight-Service-References.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Resuing_types_in_Silverlight_Service_References</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Resuing_types_in_Silverlight_Service_References</guid>
      <pubDate>Fri, 05 Jun 2009 05:39:43 GMT</pubDate>
    </item>
    <item>
      <title>WCF FAQ Part 3 - 10 security related FAQ</title>
      <description>In this article we will start with transport and message security understanding. We will then see simple code samples of how to implement transport and message security using WsHTTP bindings. We will also see what is the difference between 'BasicHttpBinding' and 'WsHttpBinding' with the help of a simple source code. WCF security is a huge topic by itself, but we are sure with this article you will get a quick start of how to go about WCF security.
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.codeproject.com%2fKB%2fWCF%2fWCFFAQPart3.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.codeproject.com%2fKB%2fWCF%2fWCFFAQPart3.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wcf/WCF_FAQ_Part_3_10_security_related_FAQ</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wcf/WCF_FAQ_Part_3_10_security_related_FAQ</guid>
      <pubDate>Tue, 26 May 2009 08:42:57 GMT</pubDate>
    </item>
    <item>
      <title>7 simple steps to enable HTTPS on WCF WsHttp bindin</title>
      <description>When we talk about WCF security there are two ways one is the transport level security and the other is message level security. Transport level security is nothing but built in security by protocols itself. In message level security we need to encrypt the data, in other words security is injected in the data itself.
In this article we will look in to how we can implement transport level security using WsHttp bindings. We do not need to do extra development for transport level security because it's more of the protocols inherent security model. In this article we will implement WsHttp using HTTPS as transport security.
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.codeproject.com%2fKB%2fWCF%2f7stepsWCF.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.codeproject.com%2fKB%2fWCF%2f7stepsWCF.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wcf/7_simple_steps_to_enable_HTTPS_on_WCF_WsHttp_bindin</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wcf/7_simple_steps_to_enable_HTTPS_on_WCF_WsHttp_bindin</guid>
      <pubDate>Mon, 25 May 2009 07:00:25 GMT</pubDate>
    </item>
    <item>
      <title>7 simple steps to enable HTTPS on WCF WsHttp bindings</title>
      <description>When we talk about WCF security there are two ways one is the transport level security and the other is message level security. Transport level security is nothing but built in security by protocols itself. In message level security we need to encrypt the data, in other words security is injected in the data itself.
In this article we will look in to how we can implement transport level security using WsHttp bindings. We do not need to do extra development for transport level security because it's more of the protocols inherent security model. In this article we will implement WsHttp using HTTPS as transport security. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.codeproject.com%2fscript%2fArticles%2fPreview.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.codeproject.com%2fscript%2fArticles%2fPreview.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wcf/7_simple_steps_to_enable_HTTPS_on_WCF_WsHttp_bindings</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wcf/7_simple_steps_to_enable_HTTPS_on_WCF_WsHttp_bindings</guid>
      <pubDate>Mon, 25 May 2009 06:41:54 GMT</pubDate>
    </item>
    <item>
      <title>JSON serialization and de-serialization in WCF DataContracts</title>
      <description>With XML becoming a thing of past for inter process communication and data exchange on the Internet infrastructures, JSON is more increasingly getting popular for providing quicker and better packaging of data across the wires. To be specific, as the need for partial rendering of web pages increases with the dynamic exchange of data using AJAX-enabled Web services, JSON has become more compact and simpler means to communicate between client calls and server processes thus providing a rich user experience. Moreover, Windows Communication Foundation (WCF) processes JSON messages using an internal, hidden mapping between JSON data and the XML infoset for data exchange. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.codedigest.com%2fArticles%2fWCF%2f243_JSON_Serialization_and_De-serialization_in_WCF_DataContracts.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.codedigest.com%2fArticles%2fWCF%2f243_JSON_Serialization_and_De-serialization_in_WCF_DataContracts.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wcf/JSON_serialization_and_de_serialization_in_WCF_DataContracts</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wcf/JSON_serialization_and_de_serialization_in_WCF_DataContracts</guid>
      <pubDate>Sun, 24 May 2009 01:23:17 GMT</pubDate>
    </item>
    <item>
      <title>9 simple steps to enable X.509 certificates on WCF</title>
      <description>In this article we will discuss how we can enable certificates on WCF service. WCF has two modes by which it transfers data one is the transport and the other is the message. This tutorial will concentrate on how we can enable certificates on message mode of data transfer.
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dotnetfunda.com%2farticles%2farticle385-9-simple-steps-to-enable-x509-certificates-on-wcf.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dotnetfunda.com%2farticles%2farticle385-9-simple-steps-to-enable-x509-certificates-on-wcf.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wcf/9_simple_steps_to_enable_X_509_certificates_on_WCF</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wcf/9_simple_steps_to_enable_X_509_certificates_on_WCF</guid>
      <pubDate>Sat, 23 May 2009 19:58:24 GMT</pubDate>
    </item>
    <item>
      <title>WCF Training</title>
      <description>Like their WPF training course, Intertech's WCF Training is exceptional. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.intertech.com%2fCourses%2fCourse.aspx%3fCourseID%3d99331"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.intertech.com%2fCourses%2fCourse.aspx%3fCourseID%3d99331" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wcf/WCF_Training</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wcf/WCF_Training</guid>
      <pubDate>Mon, 18 May 2009 23:45:50 GMT</pubDate>
    </item>
    <item>
      <title>Unit testing WCF services through dependency injection</title>
      <description>&amp;quot;When building a WCF service in an enterprise application, this service frequently depends on other services or resources. When creating unit tests for this service, we don't want to host all these other services over WCF endpoints. Instead we will most likely want to inject mock objects. In some case we may even want to inject some in-process instances of these other services.&amp;quot; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.toomuchcode.com%2f2009%2f05%2funit-testing-wcf-services-through-dependency-injection%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.toomuchcode.com%2f2009%2f05%2funit-testing-wcf-services-through-dependency-injection%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wcf/Unit_testing_WCF_services_through_dependency_injection</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wcf/Unit_testing_WCF_services_through_dependency_injection</guid>
      <pubDate>Mon, 18 May 2009 17:24:58 GMT</pubDate>
    </item>
    <item>
      <title>Create WCF Services Quickly &amp;amp; Painlessly</title>
      <description>Learn how to create WCF services quickly. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.myviewstate.net%2fblog%2fpost%2f2009%2f05%2f12%2fCreate-WCF-Services-Quickly-Painlessly.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.myviewstate.net%2fblog%2fpost%2f2009%2f05%2f12%2fCreate-WCF-Services-Quickly-Painlessly.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wcf/Create_WCF_Services_Quickly_Painlessly</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wcf/Create_WCF_Services_Quickly_Painlessly</guid>
      <pubDate>Fri, 15 May 2009 23:58:30 GMT</pubDate>
    </item>
    <item>
      <title>Difference between BasicHttpBinding and WsHttpBinding</title>
      <description>WCF has introduced lot of bindings and protocols. This article will concentrate on two important protocols BasicHttpBinding and WsHttpBinding which look similar but have some huge fundamental differences. So we will first start with the difference and then we will make a small project and see how the differences look practically. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dotnetfunda.com%2farticles%2farticle364.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dotnetfunda.com%2farticles%2farticle364.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wcf/Difference_between_BasicHttpBinding_and_WsHttpBinding</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wcf/Difference_between_BasicHttpBinding_and_WsHttpBinding</guid>
      <pubDate>Wed, 13 May 2009 14:56:01 GMT</pubDate>
    </item>
    <item>
      <title>Certificate Authentication &amp;amp; Transport Security in WCF</title>
      <description>I think I understand more about setting up a WCF service from this article then from about 10 links I found previously; and that's saying something coming from an MSDN article. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fgoneale.wordpress.com%2f2009%2f05%2f07%2fcertificate-authentication-transport-security-in-wcf%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fgoneale.wordpress.com%2f2009%2f05%2f07%2fcertificate-authentication-transport-security-in-wcf%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wcf/Certificate_Authentication_Transport_Security_in_WCF</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wcf/Certificate_Authentication_Transport_Security_in_WCF</guid>
      <pubDate>Thu, 07 May 2009 07:50:52 GMT</pubDate>
    </item>
    <item>
      <title>Configuring WCF Throttling Behaviors</title>
      <description>Most WCF services hosted in a live environment if not configured for handling heavy simultaneous requests give a Denial of Service Error, better known as DoS attacks. To prevent these from happening we have to configure the throttling behavior and some attributes of the ServiceHost.

In this article we try to understand and configure each throttling setting of a WCF service and how it affects the execution of the service. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fcsharp-codesamples.com%2f2009%2f04%2fconfiguring-wcf-throttling-behaviors%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcsharp-codesamples.com%2f2009%2f04%2fconfiguring-wcf-throttling-behaviors%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wcf/Configuring_WCF_Throttling_Behaviors</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wcf/Configuring_WCF_Throttling_Behaviors</guid>
      <pubDate>Tue, 28 Apr 2009 04:03:42 GMT</pubDate>
    </item>
    <item>
      <title>Using the MSMQ binding in WCF</title>
      <description>One of the most over-looked bindings available in WCF is the Microsoft Message Queue (MSMQ) binding. The virtues of HTTP and TCP are well documented. REST is the cool, "new" way to access services. MSMQ seems relegated to interfacing WCF with older "legacy" systems.

This shouldn't be the case. The MSMQ binding provides a rich set of features and functionality that make it an excellent choice for building many types of applications. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fjamescbender.com%2fbendersblog%2farchive%2f2009%2f04%2f04%2fthe-one-where-i-talk-about-the-msmq-binding.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjamescbender.com%2fbendersblog%2farchive%2f2009%2f04%2f04%2fthe-one-where-i-talk-about-the-msmq-binding.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wcf/Using_the_MSMQ_binding_in_WCF</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wcf/Using_the_MSMQ_binding_in_WCF</guid>
      <pubDate>Sat, 04 Apr 2009 12:29:32 GMT</pubDate>
    </item>
    <item>
      <title>Dude, where's my message? WCF and Bringing Messages Back From The Dead</title>
      <description>Article covers how to bring WCF messages back from the transactional dead-letter queue using a WCF router which can resend any message back to it's original destination queue.  Includes source discussion and zip file download of the solution (VS 2008) &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.christopherdeweese.com%2fpost%2fDude2c-wheres-my-message-WCF-and-Bringing-Messages-Back-From-The-Dead-(-Letter-Queue).aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.christopherdeweese.com%2fpost%2fDude2c-wheres-my-message-WCF-and-Bringing-Messages-Back-From-The-Dead-(-Letter-Queue).aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wcf/Dude_where_s_my_message_WCF_and_Bringing_Messages_Back_From_The_Dead</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wcf/Dude_where_s_my_message_WCF_and_Bringing_Messages_Back_From_The_Dead</guid>
      <pubDate>Thu, 02 Apr 2009 09:51:09 GMT</pubDate>
    </item>
    <item>
      <title>Integrating Unity with WCF</title>
      <description>Shows how you can use Unity to resolve dependencies within a WCF Service. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2finitializecomponent.blogspot.com%2f2008%2f06%2fintegrating-unity-with-wcf.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2finitializecomponent.blogspot.com%2f2008%2f06%2fintegrating-unity-with-wcf.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wcf/Integrating_Unity_with_WCF</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wcf/Integrating_Unity_with_WCF</guid>
      <pubDate>Fri, 27 Mar 2009 00:19:55 GMT</pubDate>
    </item>
    <item>
      <title>Remoting issues w/ auto properties</title>
      <description>In this post Derik Whittaker shows that how our friend automatic properties can lead to problems that are hard to detect. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdevlicio.us%2fblogs%2fderik_whittaker%2farchive%2f2009%2f03%2f24%2fremoting-issues-w-auto-properties-amp-the-remoting-proxy-has-no-channel-sink-error.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdevlicio.us%2fblogs%2fderik_whittaker%2farchive%2f2009%2f03%2f24%2fremoting-issues-w-auto-properties-amp-the-remoting-proxy-has-no-channel-sink-error.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wcf/Remoting_issues_w_auto_properties</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wcf/Remoting_issues_w_auto_properties</guid>
      <pubDate>Wed, 25 Mar 2009 05:41:44 GMT</pubDate>
    </item>
  </channel>
</rss>