<?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/"
	>

<channel>
	<title>Leoagricola</title>
	<atom:link href="http://word.leoagricola.net/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://word.leoagricola.net</link>
	<description>Everything about Computers since 2006</description>
	<pubDate>Fri, 21 Sep 2007 13:44:32 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to call legacy funtions (from dlls) in a Java program</title>
		<link>http://word.leoagricola.net/?p=20</link>
		<comments>http://word.leoagricola.net/?p=20#comments</comments>
		<pubDate>Fri, 21 Sep 2007 13:44:32 +0000</pubDate>
		<dc:creator>loeberbauer</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://word.leoagricola.net/?p=20</guid>
		<description><![CDATA[Goal: Learn how to write a java wrapper around a native windows library.
Tooles I used:

eclipse (java alone would be enough)
Windows SDK (for the cl.exe and windows headers)

Result: Eclipse Project with all source and binary files
First let me introduce a very simple legacy library called Native.dll, the only function in it is &#8220;foo&#8221; which prints a [...]]]></description>
		<wfw:commentRss>http://word.leoagricola.net/?feed=rss2&amp;p=20</wfw:commentRss>
		</item>
		<item>
		<title>How to Load an Assembly by File Name in Another AppDomain</title>
		<link>http://word.leoagricola.net/?p=19</link>
		<comments>http://word.leoagricola.net/?p=19#comments</comments>
		<pubDate>Wed, 13 Dec 2006 11:28:18 +0000</pubDate>
		<dc:creator>loeberbauer</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://word.leoagricola.net/?p=19</guid>
		<description><![CDATA[The scenario is such that you load an assembly and after some time you need to unload it. Assemblies for themselves are not unloadable, thus you need an application domain to isolate the assemblies. AppDomains can be unloaded.
If you need to load an assembly by file name you need the method Assembly.LoadFrom, which has no [...]]]></description>
		<wfw:commentRss>http://word.leoagricola.net/?feed=rss2&amp;p=19</wfw:commentRss>
		</item>
		<item>
		<title>How to Change the Access Rights of a File from the Command Line</title>
		<link>http://word.leoagricola.net/?p=18</link>
		<comments>http://word.leoagricola.net/?p=18#comments</comments>
		<pubDate>Mon, 11 Dec 2006 15:41:14 +0000</pubDate>
		<dc:creator>loeberbauer</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://word.leoagricola.net/?p=18</guid>
		<description><![CDATA[Example, add read&#038;execute for the current user, to a file named &#8220;hugo.dll&#8221;:
cacls hugo.dll /E /G %USERNAME%:r
]]></description>
		<wfw:commentRss>http://word.leoagricola.net/?feed=rss2&amp;p=18</wfw:commentRss>
		</item>
		<item>
		<title>How to deliver a picture with ASP.Net</title>
		<link>http://word.leoagricola.net/?p=16</link>
		<comments>http://word.leoagricola.net/?p=16#comments</comments>
		<pubDate>Mon, 25 Sep 2006 08:03:16 +0000</pubDate>
		<dc:creator>loeberbauer</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[WebDevelopment]]></category>

		<guid isPermaLink="false">http://word.leoagricola.net/?p=16</guid>
		<description><![CDATA[Questions: &#8220;Is to possible to deliver a picture via ASP.Net?&#8221; and &#8220;Do I really have to write a dummy ASPX page?&#8221;
Short Answers: Yes. No!

More Sophisticated answer:
Usually one would write a so called ashx page, where the h means handler. If you have general requests to a page you should use such handler pages.

But the truth [...]]]></description>
		<wfw:commentRss>http://word.leoagricola.net/?feed=rss2&amp;p=16</wfw:commentRss>
		</item>
		<item>
		<title>How to create a RGB (or any) image from any image kind in Java</title>
		<link>http://word.leoagricola.net/?p=15</link>
		<comments>http://word.leoagricola.net/?p=15#comments</comments>
		<pubDate>Fri, 10 Mar 2006 09:46:27 +0000</pubDate>
		<dc:creator>loeberbauer</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://word.leoagricola.net/?p=15</guid>
		<description><![CDATA[
Assume we have an image img
Create a new buffered image:
   BufferedImage buffImg = new BufferedImage(img.getWidth(null), img.getHeight(null), BufferedImage.TYPE_INT_RGB);
  
copy the original image into the newly created buffered image:
    
      Graphics2D g = buffImg.createGraphics();
      g.drawImage(img, 0, 0, null);
    [...]]]></description>
		<wfw:commentRss>http://word.leoagricola.net/?feed=rss2&amp;p=15</wfw:commentRss>
		</item>
	</channel>
</rss>
