<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>WPF ServiceHost Templates</title><link>http://wpfservicehost.codeplex.com/Project/ProjectRss.aspx</link><description>This project includes two Visual Studio 2008 templates to kick-start hosting WCF services in a WPF application, in addition to webcasts describing how to use them.</description><item><title>Updated Wiki: Home</title><link>http://wpfservicehost.codeplex.com/Wiki/View.aspx?title=Home&amp;version=10</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;This project includes two Visual Studio 2008 templates to kick-start hosting WCF services in a WPF application, in addition to webcasts describing how to use them.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;WPF ServiceHost Application Template&lt;/b&gt;&lt;br /&gt;This Visual Studio 2008 template creates a new solution with two projects: a sample WPF client configured to host a sample WCF service, and a Console client to test calling the WPF-hosted service. The accompanying webcast walks you through the installation and explains the features provided by the generated solution. &lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Download the code here: &lt;a href="http://wpfservicehost.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=28386#DownloadId=70750" class="externalLink"&gt;WPF ServiceHost Application Template&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Download the supporting video here: &lt;a href="http://wcfguidanceforwpf.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=28192#DownloadId=70912" class="externalLink"&gt;Hosting Services in WPF Clients&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;b&gt;WPF Publish and Subscribe Application Template&lt;/b&gt;&lt;br /&gt;This Visual Studio 2008 template creates a new solution with a WCF application service that publishes events to a WPF client application that subscribes to those events. The WPF client also hosts a WCF subscriber service. The accompanying webcast walks you through the installation and explains the features provided by the generated solution. &lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Download the code here: &lt;a href="http://wpfservicehost.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=28503#DownloadId=71054" class="externalLink"&gt;WPF Publish and Subscribe Application Template&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Download the supporting video here: &lt;a href="http://wpfservicehost.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=28503#DownloadId=71274" class="externalLink"&gt;WPF Publish and Subscribe Application Template&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;b&gt;Related Projects&lt;/b&gt;&lt;br /&gt;You can also go to the CodePlex site &lt;a href="http://wcfguidanceforwpf.codeplex.com" class="externalLink"&gt;http://wcfguidanceforwpf.codeplex.com&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; to find a related whitepaper, code samples and a mini webcast series providing WCF guidance to WPF developers.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Contact Info&lt;/b&gt;&lt;br /&gt;Please try to use the discussion board for this project for any project-related questions and feedback. If you have a question not project-related you can email me, Michele Leroux Bustamante, at &lt;a href="mailto:mlb@dasblonde.net" class="externalLink"&gt;mlb@dasblonde.net&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>michelebustamante</author><pubDate>Tue, 11 Aug 2009 21:01:24 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20090811090124P</guid></item><item><title>New Post: Service Instance creation</title><link>http://wpfservicehost.codeplex.com/Thread/View.aspx?ThreadId=62218</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi Awais,&lt;/p&gt;
&lt;p&gt;Yes, I have since changed my tune and now always move initialization for WPF clients into the Window.Loaded event...I will update these templates within the week to reflect this change. Thanks for the reminder! Sometimes hard to remember all the places you have to go back when you learn a new best practice!&lt;/p&gt;
&lt;p&gt;-Michele&lt;/p&gt;&lt;/div&gt;</description><author>michelebustamante</author><pubDate>Mon, 13 Jul 2009 20:51:08 GMT</pubDate><guid isPermaLink="false">New Post: Service Instance creation 20090713085108P</guid></item><item><title>New Post: Service Instance creation</title><link>http://wpfservicehost.codeplex.com/Thread/View.aspx?ThreadId=62218</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi, Thanks for the great template and webcast.&lt;/p&gt;
&lt;p&gt;I was running a sample created by using ServiceHost template. I have noticed that you are creating the instance of ClientService in constructor of main window. It works fine, if all goes well on client side, but in case there is an issue, this results in incorrect error propogation.&lt;/p&gt;
&lt;p&gt;If anything goes wrong in contructors of WPF windows, framework treats it as an Xaml parsing error. To correctly propogate error on WPF side, we should initialize services in 'Loaded' event.&lt;/p&gt;
&lt;p&gt;You can recreate the above scenario, by creating a project from the template, dont' change anything, just make sure that you run it by user rights, not administrator. This will make sure the service is not able to register port 8010 as a listener port. Now, once ser vice host starts, it will give Xaml parsing error. If you move service instiation to 'Loaded' event of MainWindow, running the project again would give proper error and correctly point out, what went wrong.&lt;/p&gt;
&lt;p&gt;Just a thought, since you are going for the best practice. :-)&lt;/p&gt;
&lt;p&gt;Cheers, keep up the good work.&lt;/p&gt;
&lt;p&gt;- Awais Bin Khalid&lt;/p&gt;&lt;/div&gt;</description><author>awaisbk</author><pubDate>Sun, 12 Jul 2009 09:24:07 GMT</pubDate><guid isPermaLink="false">New Post: Service Instance creation 20090712092407A</guid></item><item><title>Updated Wiki: Home</title><link>http://wpfservicehost.codeplex.com/Wiki/View.aspx?title=Home&amp;version=9</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;This project includes two Visual Studio 2008 templates to kick-start hosting WCF services in a WPF application, in addition to webcasts describing how to use them.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;WPF ServiceHost Application Template&lt;/b&gt;&lt;br /&gt;This Visual Studio 2008 template creates a new solution with two projects: a sample WPF client configured to host a sample WCF service, and a Console client to test calling the WPF-hosted service. The accompanying webcast walks you through the installation and explains the features provided by the generated solution. &lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Download the code here: &lt;a href="http://wpfservicehost.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=28386#DownloadId=70750" class="externalLink"&gt;WPF ServiceHost Application Template&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Download the supporting video here: &lt;a href="http://wcfguidanceforwpf.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=28192#DownloadId=70912" class="externalLink"&gt;Hosting Services in WPF Clients&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://video.msn.com/video.aspx?vid=1bdae6a0-e21d-4fa6-a2a4-cf5613f430e5" class="externalLink"&gt;Watch it on Soapbox&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;b&gt;WPF Publish and Subscribe Application Template&lt;/b&gt;&lt;br /&gt;This Visual Studio 2008 template creates a new solution with a WCF application service that publishes events to a WPF client application that subscribes to those events. The WPF client also hosts a WCF subscriber service. The accompanying webcast walks you through the installation and explains the features provided by the generated solution. &lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Download the code here: &lt;a href="http://wpfservicehost.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=28503#DownloadId=71054" class="externalLink"&gt;WPF Publish and Subscribe Application Template&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Download the supporting video here: &lt;a href="http://wpfservicehost.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=28503#DownloadId=71274" class="externalLink"&gt;WPF Publish and Subscribe Application Template&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://video.msn.com/video.aspx?vid=d7d011a4-c713-4545-85c3-d209642089d7" class="externalLink"&gt;Watch it on Soapbox&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;b&gt;Related Projects&lt;/b&gt;&lt;br /&gt;You can also go to the CodePlex site &lt;a href="http://wcfguidanceforwpf.codeplex.com" class="externalLink"&gt;http://wcfguidanceforwpf.codeplex.com&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; to find a related whitepaper, code samples and a mini webcast series providing WCF guidance to WPF developers.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Contact Info&lt;/b&gt;&lt;br /&gt;Please try to use the discussion board for this project for any project-related questions and feedback. If you have a question not project-related you can email me, Michele Leroux Bustamante, at &lt;a href="mailto:mlb@dasblonde.net" class="externalLink"&gt;mlb@dasblonde.net&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;</description><author>michelebustamante</author><pubDate>Thu, 11 Jun 2009 05:22:35 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20090611052235A</guid></item><item><title>Updated Release: WPF Publish and Subscribe Application Template (Jun 09, 2009)</title><link>http://wpfservicehost.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=28503</link><description>&lt;div&gt;This release includes a setup program (MSI) that installs a WPF Publish and Subscribe Application template for your Visual Studio 2008 environent. The accompanying webcast walks you through the installation and explains the features provided by the generated solution.&lt;/div&gt;</description><author>MicheleBustamante</author><pubDate>Wed, 10 Jun 2009 22:34:39 GMT</pubDate><guid isPermaLink="false">Updated Release: WPF Publish and Subscribe Application Template (Jun 09, 2009) 20090610103439P</guid></item><item><title>Released: WPF Publish and Subscribe Application Template (Jun 09, 2009)</title><link>http://wpfservicehost.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=28503</link><description>&lt;div&gt;This release includes a setup program (MSI) that installs a WPF Publish and Subscribe Application template for your Visual Studio 2008 environent. The accompanying webcast walks you through the installation and explains the features provided by the generated solution.&lt;/div&gt;</description><author></author><pubDate>Wed, 10 Jun 2009 22:34:39 GMT</pubDate><guid isPermaLink="false">Released: WPF Publish and Subscribe Application Template (Jun 09, 2009) 20090610103439P</guid></item><item><title>Updated Release: WPF Publish and Subscribe Application Template (Jun 09, 2009)</title><link>http://wpfservicehost.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=28503</link><description>&lt;div&gt;This release includes a setup program (MSI) that installs a WPF Publish and Subscribe Application template for your Visual Studio 2008 environent. The accompanying webcast walks you through the installation and explains the features provided by the generated solution.&lt;/div&gt;</description><author>MicheleBustamante</author><pubDate>Wed, 10 Jun 2009 22:27:05 GMT</pubDate><guid isPermaLink="false">Updated Release: WPF Publish and Subscribe Application Template (Jun 09, 2009) 20090610102705P</guid></item><item><title>Updated Release: WPF Publish and Subscribe Application Template (Jun 09, 2009)</title><link>http://wpfservicehost.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=28503</link><description>&lt;div&gt;This release includes a setup program (MSI) that installs a WPF Publish and Subscribe Application template for your Visual Studio 2008 environent. The accompanying webcast walks you through the installation and explains the features provided by the generated solution.&lt;/div&gt;</description><author>MicheleBustamante</author><pubDate>Wed, 10 Jun 2009 05:57:16 GMT</pubDate><guid isPermaLink="false">Updated Release: WPF Publish and Subscribe Application Template (Jun 09, 2009) 20090610055716A</guid></item><item><title>Created Release: WPF Publish and Subscribe Application Template (Jun 09, 2009)</title><link>http://wpfservicehost.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=28503</link><description>&lt;div&gt;This release includes a Visual Studio Content Installer (VSI) to install the WPF Publish and Subscribe Application template for your Visual Studio 2008 environent. The accompanying webcast walks you through the installation and explains the features provided by the generated solution.&lt;/div&gt;</description><author>MicheleBustamante</author><pubDate>Tue, 09 Jun 2009 07:11:27 GMT</pubDate><guid isPermaLink="false">Created Release: WPF Publish and Subscribe Application Template (Jun 09, 2009) 20090609071127A</guid></item><item><title>Updated Release: WPF ServiceHost Template (Jun 06, 2009)</title><link>http://wpfservicehost.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=28386</link><description>&lt;div&gt;This release includes a Visual Studio Content Installer (VSI) to install the WPF ServiceHost Application template for your Visual Studio 2008 environent. The accompanying webcast walks you through the installation and explains the features provided by the generated solution.&lt;/div&gt;</description><author>MicheleBustamante</author><pubDate>Mon, 08 Jun 2009 15:18:30 GMT</pubDate><guid isPermaLink="false">Updated Release: WPF ServiceHost Template (Jun 06, 2009) 20090608031830P</guid></item><item><title>Released: WPF ServiceHost Template (Jun 06, 2009)</title><link>http://wpfservicehost.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=28386</link><description>&lt;div&gt;This release includes a Visual Studio Content Installer (VSI) to install the WPF ServiceHost Application template for your Visual Studio 2008 environent. The accompanying webcast walks you through the installation and explains the features provided by the generated solution.&lt;/div&gt;</description><author></author><pubDate>Mon, 08 Jun 2009 15:18:29 GMT</pubDate><guid isPermaLink="false">Released: WPF ServiceHost Template (Jun 06, 2009) 20090608031829P</guid></item><item><title>Updated Release: WPF ServiceHost Template (Jun 06, 2009)</title><link>http://wpfservicehost.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=28386</link><description>&lt;div&gt;This release includes a Visual Studio Content Installer (VSI) to install the WPF ServiceHost Application template for your Visual Studio 2008 environent. The accompanying webcast walks you through the installation and explains the features provided by the generated solution.&lt;/div&gt;</description><author>MicheleBustamante</author><pubDate>Sat, 06 Jun 2009 23:31:52 GMT</pubDate><guid isPermaLink="false">Updated Release: WPF ServiceHost Template (Jun 06, 2009) 20090606113152P</guid></item><item><title>Created Release: WPF ServiceHost Template (Jun 06, 2009)</title><link>http://wpfservicehost.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=28386</link><description>&lt;div&gt;This release includes a Visual Studio Content Installer (VSI) to install the WPF ServiceHost Application template for your Visual Studio 2008 environent. The accompanying webcast walks you through the installation and explains the features provided by the generated solution.&lt;/div&gt;</description><author>MicheleBustamante</author><pubDate>Sat, 06 Jun 2009 20:50:40 GMT</pubDate><guid isPermaLink="false">Created Release: WPF ServiceHost Template (Jun 06, 2009) 20090606085040P</guid></item></channel></rss>