<?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>Johlero - Cardoen Lieven &#187; .NET</title>
	<atom:link href="http://blog.johlero.eu/category/net/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.johlero.eu</link>
	<description>Software development</description>
	<lastBuildDate>Sun, 25 Jul 2010 16:52:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>MSMQ &#8211; Basic Console application testing some basic functionalities</title>
		<link>http://blog.johlero.eu/2010/07/25/msmq-basic-console-application-testing-some-basic-functionalities/</link>
		<comments>http://blog.johlero.eu/2010/07/25/msmq-basic-console-application-testing-some-basic-functionalities/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 16:52:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Messaging]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[MSMQ]]></category>
		<category><![CDATA[Spring.NET]]></category>

		<guid isPermaLink="false">http://blog.johlero.eu/?p=554</guid>
		<description><![CDATA[Currently I'm doing some r&#38;d on MSMQ and how to use it in an asp.net application. I started with these two links which explain the basics of MSMQ: Accessing Message Queues Reliable Messaging with MSMQ and .NET I created a small .NET Console Application to test out some of the examples myself. It's basically a [...]]]></description>
		<wfw:commentRss>http://blog.johlero.eu/2010/07/25/msmq-basic-console-application-testing-some-basic-functionalities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WebBrowser Control &#8211; Flash DropDown Fix (Framework 2.0)</title>
		<link>http://blog.johlero.eu/2010/05/04/webbrowser-control-flash-dropdown-fix-framework-2-0/</link>
		<comments>http://blog.johlero.eu/2010/05/04/webbrowser-control-flash-dropdown-fix-framework-2-0/#comments</comments>
		<pubDate>Tue, 04 May 2010 12:20:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[.NET Framework 2.0]]></category>
		<category><![CDATA[DropDown]]></category>
		<category><![CDATA[WebBrowser]]></category>

		<guid isPermaLink="false">http://blog.johlero.eu/?p=538</guid>
		<description><![CDATA[For a customer of ours we had to create a standalone browser that could load assessments for candidates. It couldn't be loaded in a browser because the user would have access to the computer. Anyway, the .NET WebBrowser component loads a html page with the swf that starts the assessment. The problem now was that [...]]]></description>
		<wfw:commentRss>http://blog.johlero.eu/2010/05/04/webbrowser-control-flash-dropdown-fix-framework-2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nested TransactionScopes in .NET</title>
		<link>http://blog.johlero.eu/2009/12/07/nested-transactionscopes-in-net/</link>
		<comments>http://blog.johlero.eu/2009/12/07/nested-transactionscopes-in-net/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 13:23:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[nested]]></category>
		<category><![CDATA[transactionscope]]></category>

		<guid isPermaLink="false">http://blog.johlero.eu/?p=527</guid>
		<description><![CDATA[In next example, the persistence to the database will not be executed. PLAIN TEXT C#: IBinaryAssetStructureRepository rep = new BinaryAssetStructureRepository&#40;&#41;; var userDto = new UserDto &#123; id = 3345 &#125;; var dto = new BinaryAssetBranchNodeDto&#40;"name", userDto, userDto&#41;; using &#40;var scope1 = new TransactionScope&#40;&#41;&#41; &#123; &#160; &#160; using &#40;var scope2 = new TransactionScope&#40;&#41;&#41; &#160; &#160; &#123; [...]]]></description>
		<wfw:commentRss>http://blog.johlero.eu/2009/12/07/nested-transactionscopes-in-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting an embedded resource out of the assembly + convert to bytearray</title>
		<link>http://blog.johlero.eu/2009/12/07/getting-an-embedded-resource-out-of-the-assembly-convert-to-bytearray/</link>
		<comments>http://blog.johlero.eu/2009/12/07/getting-an-embedded-resource-out-of-the-assembly-convert-to-bytearray/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 10:54:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[bytearray]]></category>
		<category><![CDATA[embedded resource]]></category>

		<guid isPermaLink="false">http://blog.johlero.eu/?p=523</guid>
		<description><![CDATA[My file is located under /images/donkey.jpg, so in that case, don't forget to add .images. PLAIN TEXT C#: var assemblyName =&#160; typeof&#40;BinaryAssetFileDataProviderTest&#41;.Assembly.GetName&#40;&#41;.Name; var str = typeof &#40;BinaryAssetFileDataProviderTest&#41;.Assembly.GetManifestResourceStream&#40;assemblyName + ".images." + "donkey.jpg"&#41;; var blob = new byte&#91;str.Length&#93;; str.Read&#40;blob, 0, &#40;int&#41;str.Length&#41;; var size = &#40;int&#41;str.Length; str.Close&#40;&#41;;]]></description>
		<wfw:commentRss>http://blog.johlero.eu/2009/12/07/getting-an-embedded-resource-out-of-the-assembly-convert-to-bytearray/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Saving a connectionString at runtime to .NET app.config</title>
		<link>http://blog.johlero.eu/2009/12/07/saving-a-connectionstring-at-runtime-to-net-app-config/</link>
		<comments>http://blog.johlero.eu/2009/12/07/saving-a-connectionstring-at-runtime-to-net-app-config/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 10:18:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[app.config]]></category>
		<category><![CDATA[connectionString]]></category>

		<guid isPermaLink="false">http://blog.johlero.eu/?p=521</guid>
		<description><![CDATA[PLAIN TEXT C#: var config = ConfigurationManager.OpenExeConfiguration&#40;ConfigurationUserLevel.None&#41;; var connectionStringSettings = new ConnectionStringSettings&#40;"ConnectionString", _arguments&#91;"connectionString"&#93;, "System.Data.SqlClient"&#41;; config.ConnectionStrings.ConnectionStrings.Add&#40;connectionStringSettings&#41;; config.Save&#40;ConfigurationSaveMode.Modified&#41;; ConfigurationManager.RefreshSection&#40;"connectionStrings"&#41;;]]></description>
		<wfw:commentRss>http://blog.johlero.eu/2009/12/07/saving-a-connectionstring-at-runtime-to-net-app-config/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Educational software</title>
		<link>http://blog.johlero.eu/2009/10/18/educational-software/</link>
		<comments>http://blog.johlero.eu/2009/10/18/educational-software/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 15:54:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[RIA]]></category>
		<category><![CDATA[CD-ROMS]]></category>
		<category><![CDATA[Indie Group]]></category>
		<category><![CDATA[SCORM]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Televic-Education]]></category>

		<guid isPermaLink="false">http://blog.johlero.eu/?p=450</guid>
		<description><![CDATA[I've been working almost 5 years now on educational software in two companies (first Indie Group, now Televic-Education). We mainly created CD-ROMS (that were enclosed with schoolbooks) and online solutions. All those applications were not built from scratch, instead we created a framework that could read in all exercises and hierarchy of the exercises. Those [...]]]></description>
		<wfw:commentRss>http://blog.johlero.eu/2009/10/18/educational-software/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SQL Server DateTime v’s .Net DateTime – Battle of Accuracy!</title>
		<link>http://blog.johlero.eu/2009/06/10/sql-server-datetime-v%e2%80%99s-net-datetime-%e2%80%93-battle-of-accuracy/</link>
		<comments>http://blog.johlero.eu/2009/06/10/sql-server-datetime-v%e2%80%99s-net-datetime-%e2%80%93-battle-of-accuracy/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 07:54:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>

		<guid isPermaLink="false">http://blog.johlero.eu/?p=366</guid>
		<description><![CDATA[Link]]></description>
		<wfw:commentRss>http://blog.johlero.eu/2009/06/10/sql-server-datetime-v%e2%80%99s-net-datetime-%e2%80%93-battle-of-accuracy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rounding up last month &#8211; Pex, Mocks, NSK, CHESS, Linq, Silverlight, TechDays</title>
		<link>http://blog.johlero.eu/2009/04/04/rounding-up-last-month-pex-mocks-nsk-chess-linq-silverlight-techdays/</link>
		<comments>http://blog.johlero.eu/2009/04/04/rounding-up-last-month-pex-mocks-nsk-chess-linq-silverlight-techdays/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 12:12:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Chess]]></category>
		<category><![CDATA[Linq]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Mocking Frameworks]]></category>
		<category><![CDATA[Northwind Starters Kit]]></category>
		<category><![CDATA[Oslo]]></category>
		<category><![CDATA[Pex]]></category>
		<category><![CDATA[silverlight]]></category>
		<category><![CDATA[TechDays]]></category>

		<guid isPermaLink="false">http://blog.johlero.eu/?p=339</guid>
		<description><![CDATA[It has been a while since I wrote anything, but that's mainly because we have a new family member... Romée, a beautifull daughter, six weeks old! Back to the usual stuff. What have I been doing the last month. Well, there were Techdays, on which I wrote a few things but I still need to [...]]]></description>
		<wfw:commentRss>http://blog.johlero.eu/2009/04/04/rounding-up-last-month-pex-mocks-nsk-chess-linq-silverlight-techdays/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>TechDays Day I: Software + Services: The convergence of Saas, SOA and Web 2.0</title>
		<link>http://blog.johlero.eu/2009/03/14/techdays-day-i-software-services-the-convergence-of-saas-soa-and-web-20/</link>
		<comments>http://blog.johlero.eu/2009/03/14/techdays-day-i-software-services-the-convergence-of-saas-soa-and-web-20/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 12:14:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Architecture]]></category>
		<category><![CDATA[British Library]]></category>
		<category><![CDATA[Eve Online]]></category>
		<category><![CDATA[Photosynth]]></category>
		<category><![CDATA[SaaS]]></category>
		<category><![CDATA[Services]]></category>
		<category><![CDATA[SOA]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[WorldWide Telescope]]></category>
		<category><![CDATA[Yosemite Extreme Panoramic Imaging Project]]></category>

		<guid isPermaLink="false">http://blog.johlero.eu/?p=335</guid>
		<description><![CDATA[Very motivational and interesting presentation, especially because of the different existing examples around on the net. First of all, everything is about data and how to bring it to clients (whether they are users or other applications) and bringing software above the level of a single device. An interesting book that was talked about is [...]]]></description>
		<wfw:commentRss>http://blog.johlero.eu/2009/03/14/techdays-day-i-software-services-the-convergence-of-saas-soa-and-web-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TechDays Day I: Identity &amp; Cloud Services</title>
		<link>http://blog.johlero.eu/2009/03/14/techdays-day-i-identity-cloud-services/</link>
		<comments>http://blog.johlero.eu/2009/03/14/techdays-day-i-identity-cloud-services/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 11:03:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Azure]]></category>
		<category><![CDATA[Cloud computing]]></category>

		<guid isPermaLink="false">http://blog.johlero.eu/?p=332</guid>
		<description><![CDATA[In this presentation I kinda got lost a couple of times. I hoped to see some examples of Azure in practice, but this wasn't really the case (except one example that I hope to see soon on the blog of Vittorio Bertocci). My interest was more in Azure for Web Developers. Azure Service Platform is [...]]]></description>
		<wfw:commentRss>http://blog.johlero.eu/2009/03/14/techdays-day-i-identity-cloud-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
