<?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/category/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>Using interfaces when implementing web services</title>
		<link>http://www.freddes.se/2009/02/24/using-interfaces-when-implementing-web-services/</link>
		<comments>http://www.freddes.se/2009/02/24/using-interfaces-when-implementing-web-services/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 22:46: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[Web services]]></category>

		<guid isPermaLink="false">http://www.freddes.se/?p=788</guid>
		<description><![CDATA[The other day I wrote about sharing types between web services to simplify implementation of consumers of these services. You can read about it . I mentioned a nicer way to accomplish almost the same thing and I will present it here, by giving an example. The biggest difference is that you have to define <a href='http://www.freddes.se/2009/02/24/using-interfaces-when-implementing-web-services/'>[...]</a>]]></description>
		<wfw:commentRss>http://www.freddes.se/2009/02/24/using-interfaces-when-implementing-web-services/feed/</wfw:commentRss>
		<slash:comments>1</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>Nice coding standard documents for C# (and VB.NET)</title>
		<link>http://www.freddes.se/2008/12/30/nice-coding-standard-documents-for-c-and-vbnet/</link>
		<comments>http://www.freddes.se/2008/12/30/nice-coding-standard-documents-for-c-and-vbnet/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 18:38:34 +0000</pubDate>
		<dc:creator>Fredde</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.freddes.se/?p=667</guid>
		<description><![CDATA[Coming back from a little break during Christmas I looked around on the ASP.NET web site (http://www.asp.net) and found a couple of interesting newly added things. Amongst stuff I took a look at the coding standards added by Clint Edmonson (http://www.notsotrivial.net) a couple of days before Christmas. They look really nice and may be a <a href='http://www.freddes.se/2008/12/30/nice-coding-standard-documents-for-c-and-vbnet/'>[...]</a>]]></description>
		<wfw:commentRss>http://www.freddes.se/2008/12/30/nice-coding-standard-documents-for-c-and-vbnet/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Service interfaces using XSD (cont&#8217;d MVC Web Service part 1)</title>
		<link>http://www.freddes.se/2008/12/29/service-interfaces-using-xsd-contd-mvc-web-service-part-1/</link>
		<comments>http://www.freddes.se/2008/12/29/service-interfaces-using-xsd-contd-mvc-web-service-part-1/#comments</comments>
		<pubDate>Mon, 29 Dec 2008 22:09:56 +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>
		<category><![CDATA[Web services]]></category>
		<category><![CDATA[XSD]]></category>

		<guid isPermaLink="false">http://www.freddes.se/?p=593</guid>
		<description><![CDATA[The other day I got a question from a colleague of mine, regarding the XML schema usage when defining a web service interface, like the one defined in series. The question was something like this: &#8220;How will the consumer of the web service react if the, from the XSD file, auto-generated class used as in <a href='http://www.freddes.se/2008/12/29/service-interfaces-using-xsd-contd-mvc-web-service-part-1/'>[...]</a>]]></description>
		<wfw:commentRss>http://www.freddes.se/2008/12/29/service-interfaces-using-xsd-contd-mvc-web-service-part-1/feed/</wfw:commentRss>
		<slash:comments>1</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>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>Implementing a custom SOAP extension</title>
		<link>http://www.freddes.se/2008/11/02/implementing-a-custom-soap-extension/</link>
		<comments>http://www.freddes.se/2008/11/02/implementing-a-custom-soap-extension/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 17:32:51 +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[Uncategorized]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[SOAP]]></category>
		<category><![CDATA[Web services]]></category>

		<guid isPermaLink="false">http://www.freddes.se/?p=280</guid>
		<description><![CDATA[In this article I will explain how to implement a custom SOAP extension to be able log all incoming and outgoing SOAP messages passing through a .NET web service. Sometimes the IIS log file is not enough when debugging or looking for errors in a web service. Let&#8217;s say that the web service works like <a href='http://www.freddes.se/2008/11/02/implementing-a-custom-soap-extension/'>[...]</a>]]></description>
		<wfw:commentRss>http://www.freddes.se/2008/11/02/implementing-a-custom-soap-extension/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
	</channel>
</rss>

