<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>freddes.se &#187; Visual Studio</title>
	<atom:link href="http://www.freddes.se/tag/visual-studio/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.freddes.se</link>
	<description>...because I&#039;m a nerd</description>
	<lastBuildDate>Tue, 15 Nov 2011 07:42:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Mysterious error message when using Response.Redirect inside UpdatePanel</title>
		<link>http://www.freddes.se/2011/11/15/mysterious-error-message-when-using-response-redirect-inside-updatepanel/</link>
		<comments>http://www.freddes.se/2011/11/15/mysterious-error-message-when-using-response-redirect-inside-updatepanel/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 07:24:10 +0000</pubDate>
		<dc:creator>Fredde</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Tips & tricks]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.freddes.se/?p=1524</guid>
		<description><![CDATA[A couple of week ago a colleague of mine had a strange problem when running an ASP.NET WebForms application containing an UpdatePanel and a Response.Redirect inside a server side button click event handler. The same thing happened on my computer and yesterday I bumped into the same boring thing once more. I felt I had <a href='http://www.freddes.se/2011/11/15/mysterious-error-message-when-using-response-redirect-inside-updatepanel/'>[...]</a>]]></description>
		<wfw:commentRss>http://www.freddes.se/2011/11/15/mysterious-error-message-when-using-response-redirect-inside-updatepanel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Announcement and discovery in WCF 4</title>
		<link>http://www.freddes.se/2010/05/16/announcement-and-discovery-in-wcf-4/</link>
		<comments>http://www.freddes.se/2010/05/16/announcement-and-discovery-in-wcf-4/#comments</comments>
		<pubDate>Sun, 16 May 2010 13:30:30 +0000</pubDate>
		<dc:creator>Fredde</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[WCF]]></category>
		<category><![CDATA[Web services]]></category>

		<guid isPermaLink="false">http://www.freddes.se/?p=1163</guid>
		<description><![CDATA[WCF 4 comes with a bunch of new features where I find the service announcement and service discovery really cool. In this article I will implement a couple of services using these new features. A couple of key words and classes for the scenario are SeviceDiscoveryBehavior, UdpAnnouncemenEndpoint, AnnouncementService. I will describe those classes along the <a href='http://www.freddes.se/2010/05/16/announcement-and-discovery-in-wcf-4/'>[...]</a>]]></description>
		<wfw:commentRss>http://www.freddes.se/2010/05/16/announcement-and-discovery-in-wcf-4/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Sharing DataContracts between WCF Services</title>
		<link>http://www.freddes.se/2010/05/02/sharing-datacontracts-between-wcf-services/</link>
		<comments>http://www.freddes.se/2010/05/02/sharing-datacontracts-between-wcf-services/#comments</comments>
		<pubDate>Sun, 02 May 2010 15:21:21 +0000</pubDate>
		<dc:creator>Fredde</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[WCF]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Web services]]></category>

		<guid isPermaLink="false">http://www.freddes.se/?p=1108</guid>
		<description><![CDATA[In a previous article, Multiple web service references sharing types, I wrote about sharing types between referenced web services. That article used the old ASP.NET Web Service technique, but nowadays WCF is the technology to use. In this article I will use much the same scenario as in the previous article, Visual Studio 2010 and <a href='http://www.freddes.se/2010/05/02/sharing-datacontracts-between-wcf-services/'>[...]</a>]]></description>
		<wfw:commentRss>http://www.freddes.se/2010/05/02/sharing-datacontracts-between-wcf-services/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Update Views through events between their ViewModels</title>
		<link>http://www.freddes.se/2009/12/04/update-views-through-events-between-their-viewmodels/</link>
		<comments>http://www.freddes.se/2009/12/04/update-views-through-events-between-their-viewmodels/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 08:11:31 +0000</pubDate>
		<dc:creator>Fredde</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[MVVM]]></category>
		<category><![CDATA[Patterns]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.freddes.se/?p=1012</guid>
		<description><![CDATA[Lately I&#8217;ve been developing standalone WPF applications using Visual Basic. To make a WPF application somewhat easy to maintain and extend it is extremely important to use some design pattern. The most popular design pattern around when developing WPF applications is the MVVM pattern (Model-View-ViewModel). Developing a single view application is really really straight forward <a href='http://www.freddes.se/2009/12/04/update-views-through-events-between-their-viewmodels/'>[...]</a>]]></description>
		<wfw:commentRss>http://www.freddes.se/2009/12/04/update-views-through-events-between-their-viewmodels/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Multiple web service references sharing types</title>
		<link>http://www.freddes.se/2009/02/16/multiple-web-service-references-sharing-types/</link>
		<comments>http://www.freddes.se/2009/02/16/multiple-web-service-references-sharing-types/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 22:14:18 +0000</pubDate>
		<dc:creator>Fredde</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[SOAP]]></category>

		<guid isPermaLink="false">http://www.freddes.se/?p=747</guid>
		<description><![CDATA[In this article I would like to point out a useful way to accomplish something that would be really easy, but still have been annoying me for the last couple of months. Imagine that you would like to get some data of some type from one web service and pass it on to another. The <a href='http://www.freddes.se/2009/02/16/multiple-web-service-references-sharing-types/'>[...]</a>]]></description>
		<wfw:commentRss>http://www.freddes.se/2009/02/16/multiple-web-service-references-sharing-types/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Setup an ASP.NET Web Service Solution (MVC Web Service part 2)</title>
		<link>http://www.freddes.se/2008/11/25/setup-an-aspnet-web-service-solution-mvc-web-service-part-2/</link>
		<comments>http://www.freddes.se/2008/11/25/setup-an-aspnet-web-service-solution-mvc-web-service-part-2/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 08:30:22 +0000</pubDate>
		<dc:creator>Fredde</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[MVC]]></category>

		<guid isPermaLink="false">http://www.freddes.se/?p=406</guid>
		<description><![CDATA[In this article the actual MVC like design will start to show up. The previous article, , didn&#8217;t really have anthing to do with MVC, so let&#8217;s begin! Almost all design patterns will make re-use of code easier, but to accomplish this it is important to setup the Visual Studio Solution in such a way <a href='http://www.freddes.se/2008/11/25/setup-an-aspnet-web-service-solution-mvc-web-service-part-2/'>[...]</a>]]></description>
		<wfw:commentRss>http://www.freddes.se/2008/11/25/setup-an-aspnet-web-service-solution-mvc-web-service-part-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Defining service interface types (MVC Web Service part 1)</title>
		<link>http://www.freddes.se/2008/11/16/defining-service-interface-types-mvc-web-service-part-1/</link>
		<comments>http://www.freddes.se/2008/11/16/defining-service-interface-types-mvc-web-service-part-1/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 17:40:18 +0000</pubDate>
		<dc:creator>Fredde</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Web services]]></category>
		<category><![CDATA[XSD]]></category>

		<guid isPermaLink="false">http://www.freddes.se/?p=338</guid>
		<description><![CDATA[I decided to start the process of creating a web service using an MVC like design pattern by specifying the interface towards the consumers. The interface has to be &#8220;nice&#8221;, and by that I mean that the parameters and return values should be easy to understand and use. I will show how to define an <a href='http://www.freddes.se/2008/11/16/defining-service-interface-types-mvc-web-service-part-1/'>[...]</a>]]></description>
		<wfw:commentRss>http://www.freddes.se/2008/11/16/defining-service-interface-types-mvc-web-service-part-1/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Introduction to an MVC like designed Web Service</title>
		<link>http://www.freddes.se/2008/11/12/introduction-to-an-mvc-like-designed-web-service/</link>
		<comments>http://www.freddes.se/2008/11/12/introduction-to-an-mvc-like-designed-web-service/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 11:42:01 +0000</pubDate>
		<dc:creator>Fredde</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[Web services]]></category>

		<guid isPermaLink="false">http://www.freddes.se/?p=329</guid>
		<description><![CDATA[The other day I tried to compose an article about how to design an ASP.NET Web Service using an MVC like design pattern. I ended up with a huge article and decided to rewrite it and split it into a couple of smaller articles. I will try to write these articles as independent of each <a href='http://www.freddes.se/2008/11/12/introduction-to-an-mvc-like-designed-web-service/'>[...]</a>]]></description>
		<wfw:commentRss>http://www.freddes.se/2008/11/12/introduction-to-an-mvc-like-designed-web-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows event log and web applications</title>
		<link>http://www.freddes.se/2008/09/06/windows-event-log-and-web-applications/</link>
		<comments>http://www.freddes.se/2008/09/06/windows-event-log-and-web-applications/#comments</comments>
		<pubDate>Sat, 06 Sep 2008 11:14:14 +0000</pubDate>
		<dc:creator>Fredde</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Tips & tricks]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.freddes.se/?p=76</guid>
		<description><![CDATA[When developing and running web applications, such as web sites or web services, it is nice and convenient to have some logging from the application. Instead of using a log file it would be nice to be able to use the built-in event log in Windows. When running or debugging a web application from Visual <a href='http://www.freddes.se/2008/09/06/windows-event-log-and-web-applications/'>[...]</a>]]></description>
		<wfw:commentRss>http://www.freddes.se/2008/09/06/windows-event-log-and-web-applications/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ASP.NET MVC Preview 5 Release</title>
		<link>http://www.freddes.se/2008/09/02/aspnet-mvc-preview-5-release/</link>
		<comments>http://www.freddes.se/2008/09/02/aspnet-mvc-preview-5-release/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 15:47:34 +0000</pubDate>
		<dc:creator>Fredde</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET MVC Framework]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.freddes.se/?p=70</guid>
		<description><![CDATA[On the ASP.NET CodePlex web site I found that ASP.NET MVC Framework was released, preview 5, the other day. As I have written in earlier posts about the MVC Framework I will try it out by using it in one of my hobby projects. So far I haven&#8217;t got the time to start this project <a href='http://www.freddes.se/2008/09/02/aspnet-mvc-preview-5-release/'>[...]</a>]]></description>
		<wfw:commentRss>http://www.freddes.se/2008/09/02/aspnet-mvc-preview-5-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

