<?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>Tim Van Wassenhove &#187; Free Software</title>
	<atom:link href="http://www.timvw.be/category/fsf/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.timvw.be</link>
	<description>The journey of a thousand miles begins with one step.</description>
	<lastBuildDate>Thu, 29 Jul 2010 17:07:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Ninject: connect an IProxyFactory component to the kernel</title>
		<link>http://www.timvw.be/ninject-connect-an-iproxyfactory-component-to-the-kernel/</link>
		<comments>http://www.timvw.be/ninject-connect-an-iproxyfactory-component-to-the-kernel/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 17:54:30 +0000</pubDate>
		<dc:creator>timvw</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Free Software]]></category>

		<guid isPermaLink="false">http://www.timvw.be/?p=1572</guid>
		<description><![CDATA[Because it&#8217;s the second time that i run into this i will post the solution here so that i (and all the other people that run into the same issue) can easily solve it next time. Anyway, i was playing with Ninject and ran into the following exception: Error activating XXX: the implementation type YYY [...]]]></description>
			<content:encoded><![CDATA[<p>Because it&#8217;s the second time that i run into this i will post the solution here so that i (and all the other people that run into the same issue) can easily solve it next time. Anyway, i was playing with <a href="http://ninject.org/">Ninject</a> and ran into the following exception:</p>

<blockquote>Error activating XXX: the implementation type YYY requests static interceptors, or dynamic interceptors have been defined.
In order to provide interception, you must connect an IProxyFactory component to the kernel.</blockquote>

<p>If you search for implementations of IProxyFactory you will find the DynamicProxy2ProxyFactory and the LinFuProxyFactory classes. But how can you tell your kernel to use them? This is pretty simple (but hard to find on the web):</p>

<pre class="brush: csharp;">Kernel.Components.Connect&lt;IProxyFactory&gt;(new DynamicProxy2ProxyFactory());</pre>

<p>Instead of writing this code to connect the ProxyFactory implementation you can also use the XXX module (which does it for you) as following:</p>

<pre class="brush: csharp;">var kernel = new StandardKernel(new DynamicProxy2Module(), new BusinessModule());</pre>]]></content:encoded>
			<wfw:commentRss>http://www.timvw.be/ninject-connect-an-iproxyfactory-component-to-the-kernel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using sed</title>
		<link>http://www.timvw.be/using-sed/</link>
		<comments>http://www.timvw.be/using-sed/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 20:36:53 +0000</pubDate>
		<dc:creator>timvw</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Free Software]]></category>

		<guid isPermaLink="false">http://www.timvw.be/?p=846</guid>
		<description><![CDATA[For a couple of days now i&#8217;ve been pondering about posting something about my love for GNU text-utilities but never got round to it. A couple of minutes ago i read Phil Windley&#8217;s Using Grep and Find post so here is a one-liner that shows how you can add a reference to a msbuild target [...]]]></description>
			<content:encoded><![CDATA[<p>For a couple of days now i&#8217;ve been pondering about posting something about my love for <a href="http://www.gnu.org/software/textutils/">GNU text-utilities</a> but never got round to it. A couple of minutes ago i read Phil Windley&#8217;s <a href="http://www.windley.com/archives/2009/03/using_grep_and_find.shtml">Using Grep and Find</a> post so here is a one-liner that shows how you can  add a reference to a msbuild target file to all csproj files in a given folder:</p>

<pre class="brush: bash;">find -name *.csproj -exec sed -i -e '#^&lt;/Project&gt;$#  &lt;Import Project=&quot;X:\\BuildTasks\\Corp.targets&quot; /&gt;\r\n&lt;/Project&gt;' {} \;</pre> 

<p>Or if you are frustrated with System.Diagnostics.CodeAnalysis.SuppressMessageAttributes and want to remove them from all your cs files:</p>

<pre class="brush: bash;">find -name *.cs -exed sed -r -i -e  's#\[.*?SuppressMessage.*?\]##' {} \&quot;;</pre>]]></content:encoded>
			<wfw:commentRss>http://www.timvw.be/using-sed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Build OpenSSL with Visual Studio 2008</title>
		<link>http://www.timvw.be/build-openssl-with-visual-studio-2008/</link>
		<comments>http://www.timvw.be/build-openssl-with-visual-studio-2008/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 16:29:45 +0000</pubDate>
		<dc:creator>timvw</dc:creator>
				<category><![CDATA[Free Software]]></category>

		<guid isPermaLink="false">http://www.timvw.be/?p=223</guid>
		<description><![CDATA[These days building OpenSSL with Visual Studio 2008 has become really easy. I don&#8217;t like to edit .cnf files so i decided to patch the code a little so that the default configuration file becomes openssl.config: string basePath = @&#34;C:\src\openssl-0.9.8g&#34;; string originalConfigfile = &#34;openssl.cnf&#34;; string updatedConfigfile = &#34;openssl.config&#34;; foreach (string filename in Directory.GetFiles(basePath, &#34;*.*&#34;, SearchOption.AllDirectories)) [...]]]></description>
			<content:encoded><![CDATA[<p>These days building <a href="http://www.openssl.org">OpenSSL</a> with Visual Studio 2008 has become really easy. I don&#8217;t like to edit .cnf files so i decided to patch the code a little so that the default configuration file becomes openssl.config:</p>

<pre class="brush: csharp;">string basePath = @&quot;C:\src\openssl-0.9.8g&quot;;

string originalConfigfile = &quot;openssl.cnf&quot;;
string updatedConfigfile = &quot;openssl.config&quot;;
foreach (string filename in Directory.GetFiles(basePath, &quot;*.*&quot;, SearchOption.AllDirectories))
{
 string contents = File.ReadAllText(filename);
 if (contents.Contains(originalConfigfile))
 {
  Console.WriteLine(filename);
  File.WriteAllText(filename, contents.Replace(originalConfigfile, updatedConfigfile));
 }
}

File.WriteAllText(basePath + @&quot;\apps\&quot; + updatedConfigfile, File.ReadAllText(basePath + @&quot;\apps\&quot; + originalConfigfile));</pre>

<p>Open a Visual Studio 2008 Command prompt and add references to the <a href="http://blogs.msdn.com/windowssdk">Microsoft SDK</a> as following:</p>

SET PATH=%PATH%;C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin
SET LIB=%LIB%;C:\Program Files\Microsoft SDKs\Windows\v6.0A\Lib
SET INCLUDE=%INCLUDE%;C:\Program Files\Microsoft SDKs\Windows\v6.0A\Include

<p>Now we simply have to follow the tasks listed in INSTALL.W32:</p>
perl Configure VC-WIN32 &#8211;prefix=c:/openssl
ms\do_masm
nmake -f ms\ntdll.mak
nmake -f ms\ntdll.mak test
nmake -f ms\ntdll.mak install

<p>Happy OpenSSL&#8217;ing!</p>]]></content:encoded>
			<wfw:commentRss>http://www.timvw.be/build-openssl-with-visual-studio-2008/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Running .NET applications on Debian GNU/Linux with Mono</title>
		<link>http://www.timvw.be/running-net-applications-on-debian-gnulinux-with-mono/</link>
		<comments>http://www.timvw.be/running-net-applications-on-debian-gnulinux-with-mono/#comments</comments>
		<pubDate>Tue, 25 Apr 2006 00:40:04 +0000</pubDate>
		<dc:creator>timvw</dc:creator>
				<category><![CDATA[Free Software]]></category>

		<guid isPermaLink="false">http://www.timvw.be/running-net-applications-on-debian-gnulinux-with-mono/</guid>
		<description><![CDATA[Today i noticed Running .Net applications on Linux with Mono and the author wrote the following: I found that on Debian at this stage I got an error: The assembly mscorlib.dll was not found or could not be loaded. It should have been installed in the &#8216;/usr/lib/mono/2.0/mscorlib.dll&#8217; directory. I cured that by executing: $ cd [...]]]></description>
			<content:encoded><![CDATA[<p>Today i noticed <a href="http://www.linux.com/article.pl?sid=06/04/12/1921225">Running .Net applications on Linux with Mono</a> and the author wrote the following:</p>
<blockquote><p>
I found that on Debian at this stage I got an error: The assembly mscorlib.dll was not found or could not be loaded. It should have been installed in the &#8216;/usr/lib/mono/2.0/mscorlib.dll&#8217; directory. I cured that by executing:
$ cd /usr/lib/mono
$ sudo ln -s 1.0 2.0
</p></blockquote>
<p>There is only one error, and it&#8217;s in the <a href="en.wikipedia.org/wiki/PEBKAC">PEBKAC</a> category. I can understand that the author couldn&#8217;t find the TargetFrameworkVersion tag in his project file and generated 2.0 code. What i don&#8217;t understand is that he didn&#8217;t notice the <a href="http://www.mono-project.com/Downloads">Other Downloads</a> section and that there are <a href="http://www.debian.org">Debian</a> packages available with support for the 2.0 runtime. Ok, apt-get might complain about the packages and you would have to add a key to your keyring as following before you can install the packages:</p>

gpg &#8211;recv-keys 7127E5ABEEF946C8
gpg &#8211;armor &#8211;export 7127E5ABEEF946C8 | apt-key add -

<p>How hard is that? <img src='http://www.timvw.be/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>]]></content:encoded>
			<wfw:commentRss>http://www.timvw.be/running-net-applications-on-debian-gnulinux-with-mono/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Building apache-win32 with Visual Studio 2005</title>
		<link>http://www.timvw.be/building-apache-win32-with-visual-studio-2005/</link>
		<comments>http://www.timvw.be/building-apache-win32-with-visual-studio-2005/#comments</comments>
		<pubDate>Sat, 15 Apr 2006 00:44:35 +0000</pubDate>
		<dc:creator>timvw</dc:creator>
				<category><![CDATA[Free Software]]></category>

		<guid isPermaLink="false">http://www.timvw.be/building-apache-win32-with-visual-studio-2005/</guid>
		<description><![CDATA[Today i decided to build apache-win32. Here&#8217;s how i did it: Download Apache httpd-2.2.0-win32-src-rev2.zip. Unzip and read README.TXT, INSTALL.TXT and docs/manual/platform/win_compiling.html.en Save awk95.exe as awk.exe in a directory that&#8217;s in your %PATH%. Open Apache.dsw with VS2005 and choose &#8220;Yes To All&#8221; to convert the project. Uncheck abs, mod_deflate and mod_ssl in the the configuration form [...]]]></description>
			<content:encoded><![CDATA[<p>Today i decided to build apache-win32. Here&#8217;s how i did it:</p>
<ul>
<li>Download Apache <a href="http://apache.be.proserve.nl/httpd/httpd-2.2.0-win32-src-rev2.zip">httpd-2.2.0-win32-src-rev2.zip</a>.</li>
<li>Unzip and read README.TXT, INSTALL.TXT and docs/manual/platform/win_compiling.html.en</li>
<li>Save <a href="http://cm.bell-labs.com/cm/cs/who/bwk/awk95.exe">awk95.exe</a> as awk.exe in a directory that&#8217;s in your %PATH%.</li>
<li>Open Apache.dsw with VS2005 and choose &#8220;Yes To All&#8221; to convert the project.</li>
<li>Uncheck abs, mod_deflate and mod_ssl in the the configuration form via Build -> Configuration Manager.</li>
<li>Choose InstallBin, click right and Set as StartUp Project.</li>
<li>Open InstallBin/Makefile.win and remove the lines 129, 130, 131, 133, 134, 135 and 136.</li>
<li>Start debugging (F5). Stop debugging and end the httpd.exe process via your Task Manager.</li>
<li>Download and extract <a href="http://www.zlib.net/zlib-1.2.3.tar.bz2">zlib-1.2.3.tar.bz2</a> into srclib/zlib.</li> 
<li>Prepend &#8220;dword ptr&#8221; to the second argument of the movd instructions on lines647, 649, 663 and 720 in srclib/zlib/contrib/masmx86/inffas32.asm</li>
<li>Open srclib/zlib/projects/visualc6/zlib.dsp, choose the zlib project in the solution explorer. Choose &#8220;LIB ASM Release&#8221; in the configuration explorer and build zlib.</li>
<li>Copy srclib/zlib/projects/visualc6/Win32_LIB_ASM_Release/zlib.lib to srclib/zlib.</li>
<li>Check the mod_deflate in the configuration form via Build -> Configuration Manager.</li>
<li>Choose the mod_deflate project in the solution explorer and build it.</li>
<li>The original <a href="http://www.openssl.org/source/openssl-0.9.8a.tar.gz">openssl-0.9.8a.tar.gz</a> doesn&#8217;t compile with Visual Studio 2005 but someone has already made a <a href="http://bbdev.fluffy.co.uk/svn/box/chris/win32/support/openssl-0.9.8a-win32fix.patch">patch</a>. Download <a href="http://bbdev.fluffy.co.uk/svn/box/chris/win32/support/openssl-0.9.8a-vc2005.zip">openssl-0.9.8a-vc2005.zip</a> and extract it into srclib/openssl.</li>
<li>Open a Visual Studio 2005 Command Prompt and cd to the openssl directory and run: &#8220;perl Configure VC-WIN32&#8243; (don&#8217;t close this prompt yet).</li>
<li>Insert before line 61 in srclib/openssl/ms/do_masm.bat the following line: &#8220;perl util\mk1mf.pl debug dll VC-WIN32 > ms\ntdll-dbg.mak&#8221;. Now run: &#8220;ms\do_masm&#8221; and &#8220;nmake -f ms\ntdll-dbg.mak&#8221;.</li>
<li>Check the abs and mod_ssl project in the configuration from via Build -> Configuration Manager.</li>
<li>Build the two projects.</li>
<li>Done!</li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.timvw.be/building-apache-win32-with-visual-studio-2005/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>GNU screen</title>
		<link>http://www.timvw.be/gnu-screen/</link>
		<comments>http://www.timvw.be/gnu-screen/#comments</comments>
		<pubDate>Mon, 06 Feb 2006 19:31:58 +0000</pubDate>
		<dc:creator>timvw</dc:creator>
				<category><![CDATA[Free Software]]></category>

		<guid isPermaLink="false">http://www.timvw.be/gnu-screen/</guid>
		<description><![CDATA[Another tool that belongs to my favorites is GNU Screen. A couple of years ago i had a bad internet connection and when i was working on a remote shell i was always logged out and had to start over. I really hated that Today i don&#8217;t have this problem anymore, but i like to [...]]]></description>
			<content:encoded><![CDATA[<p>Another tool that belongs to my favorites is <a href="http://www.gnu.org/software/screen/">GNU Screen</a>. A couple of years ago i had a bad internet connection and when i was working on a remote shell i was always logged out and had to start over. I really hated that <img src='http://www.timvw.be/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Today i don&#8217;t have this problem anymore, but i like to keep <a href="http://www.irssi.org">Irssi</a> (an <a href="http://en.wikipedia.org/wiki/IRC">IRC</a> user-agent) running, even when i&#8217;m not logged in. <a href="http://gentoo-wiki.com/TIP_Using_screen">TIP Using Screen</a> is an article that gives a couple of other reasons to use it and explains how it works. The default settings suck if you also use <a href="http://www.gnu.org/software/emacs/">GNU Emacs</a>. So i had to figure out a couple of keypresses. With &#8220;cat -v&#8221; i could easily see what those keypresses were. Here is my .screenrc file:</p>
<pre>
##############################################
# Author: Tim Van Wassenhove
# Update: 2006-02-06 03:02
##############################################
startup_message off
escape ^Oo

bind i screen -t 'irssi'        3 irssi
bind v screen -t 'vim'          4 vim
bind m screen -t 'mutt'         5 mutt
bind b screen -t 'slrn belnet'  6 slrn -h news.belnet.be
bind r screen -t 'slrn php'     7 slrn -h news.php.net
bind e screen -t 'elinks'       8 elinks http://www.google.com
</pre>]]></content:encoded>
			<wfw:commentRss>http://www.timvw.be/gnu-screen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GNU sort</title>
		<link>http://www.timvw.be/gnu-sort/</link>
		<comments>http://www.timvw.be/gnu-sort/#comments</comments>
		<pubDate>Mon, 06 Feb 2006 00:55:57 +0000</pubDate>
		<dc:creator>timvw</dc:creator>
				<category><![CDATA[Free Software]]></category>

		<guid isPermaLink="false">http://www.timvw.be/gnu-sort/</guid>
		<description><![CDATA[I already wrote that GNU Core Utilities (GNU Textutils) have become my favorite text processing tools. Today i wanted to sort a couple of lines using the last three numbers of each line. Here is an example: c:/data/backup/JA-229 c:/data/backup/JA-221 c:/data/backup/JA-233 c:/data/backup/NE-046 c:/data/backup/NE-049 c:/data/backup/JA-217 c:/data/backup/JA-225 With the command &#8220;sort -n -t- -k2 myfile.txt&#8221; i quickly got [...]]]></description>
			<content:encoded><![CDATA[<p>
I already wrote that <a href="http://www.gnu.org/software/coreutils/">GNU Core Utilities</a> (<a href="http://www.gnu.org/software/textutils/textutils.html">GNU Textutils</a>) have become my favorite text processing tools. Today i wanted to sort a couple of lines using the last three numbers of each line. Here is an example:
</p>
<pre>
c:/data/backup/JA-229
c:/data/backup/JA-221
c:/data/backup/JA-233
c:/data/backup/NE-046
c:/data/backup/NE-049
c:/data/backup/JA-217
c:/data/backup/JA-225
</pre>
<p>
With the command &#8220;sort -n -t- -k2 myfile.txt&#8221; i quickly got what i needed.
</p> ]]></content:encoded>
			<wfw:commentRss>http://www.timvw.be/gnu-sort/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up an SSH tunnel</title>
		<link>http://www.timvw.be/setting-up-an-ssh-tunnel/</link>
		<comments>http://www.timvw.be/setting-up-an-ssh-tunnel/#comments</comments>
		<pubDate>Thu, 19 Jan 2006 19:31:58 +0000</pubDate>
		<dc:creator>timvw</dc:creator>
				<category><![CDATA[Free Software]]></category>

		<guid isPermaLink="false">http://www.timvw.be/gnu-sort-2/</guid>
		<description><![CDATA[On the machine example there is a (tcp/ip) program listening on port 12345. The protocol it talks is some plaintext language. I want to talk with it, but i don&#8217;t want others to know what i&#8217;m sending to it. I&#8217;m lucky enough to have remote access to that machine via ssh. I setup a tunnel [...]]]></description>
			<content:encoded><![CDATA[<p>On the machine example there is a (<a href="http://en.wikipedia.org/wiki/TCP/IP">tcp/ip</a>) program listening on port 12345.  The protocol it talks is some <a href="http://en.wikipedia.org/wiki/Plain_text">plaintext</a> language. I want to talk with it, but i don&#8217;t want others to know what i&#8217;m sending to it. I&#8217;m lucky enough to have remote access to that machine via <a href="http://en.wikipedia.org/wiki/Ssh">ssh</a>. I setup a tunnel with the following command:</p>
<pre class="brush: bash;">
ssh -N -L 12345:example:12345 timvw@example
</pre>
<p>Now my program can connect to localhost:12345 and ssh will make sure that it ends up at example.:12345 without others being able to see the actual data <img src='http://www.timvw.be/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  For windows users i suggest that you take a look at <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty">Plink</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.timvw.be/setting-up-an-ssh-tunnel/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Format sourcecode with VIM</title>
		<link>http://www.timvw.be/format-sourcecode-with-vim/</link>
		<comments>http://www.timvw.be/format-sourcecode-with-vim/#comments</comments>
		<pubDate>Sat, 14 Jan 2006 19:32:53 +0000</pubDate>
		<dc:creator>timvw</dc:creator>
				<category><![CDATA[Free Software]]></category>

		<guid isPermaLink="false">http://www.timvw.be/format-sourcecode-with-vim/</guid>
		<description><![CDATA[I once read an article that explained how i could make Vim format my code but i forgot what the command was. Many websearches for &#8220;vim indent code&#8221; later i had the luminous idea to search for &#8220;vim format code&#8221; instead. The first site i visited already had the answer i had been looking for: [...]]]></description>
			<content:encoded><![CDATA[<p>I once read an article that explained how i could make <a href="http://www.vim.org">Vim</a> format my code but i forgot what the command was. Many websearches for &#8220;vim indent code&#8221; later i had the luminous idea to search for &#8220;vim format code&#8221; instead. The first site i visited already had the answer i had been looking for: &#8220;gg=G&#8221;. Simple as that <img src='http://www.timvw.be/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>]]></content:encoded>
			<wfw:commentRss>http://www.timvw.be/format-sourcecode-with-vim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Problem with Base and MySQL support</title>
		<link>http://www.timvw.be/problem-with-base-and-mysql-support/</link>
		<comments>http://www.timvw.be/problem-with-base-and-mysql-support/#comments</comments>
		<pubDate>Fri, 04 Nov 2005 00:52:02 +0000</pubDate>
		<dc:creator>timvw</dc:creator>
				<category><![CDATA[Free Software]]></category>

		<guid isPermaLink="false">http://www.timvw.be/problem-with-base-and-mysql-support/</guid>
		<description><![CDATA[Today i decided to try out the new OpenOffice.org release. Creating a presentation with Impress went pretty smooth. After that i wanted to check out Base with a MySQL backend but i got an error message that the JDBC driver could not be loaded. I immediately knew that i had to add the MySQL driver [...]]]></description>
			<content:encoded><![CDATA[<p>
Today i decided to try out the new <a href="http://www.openoffice.org/">OpenOffice.org</a>  release. Creating a presentation with <a href="http://www.openoffice.org/product/impress.html">Impress</a> went pretty smooth. After that i wanted to check out <a href="http://www.openoffice.org/product/base.html">Base</a> with a MySQL backend but i got an error message that the JDBC driver could not be loaded.
</p>
 
<p>
<img src="http://www.timvw.be/wp-content/images/ooo2mysqlfail.jpg" alt="Could not load JDBC driver dialog" />
</p>

<p>I immediately knew that i had to add the <a href="http://www.mysql.com/products/connector/j/">MySQL driver</a> to the classpath. A little websearch learned me i have to choose Tools->Options in the menu. And from there i can modify the classpath via the OpenOffice.org->Java panel.</p>

<p>
<img src="http://www.timvw.be/wp-content/images/ooo2mysqljava.jpg" alt="Java configuration dialog" width="470" />
</p>

<p>
<img src="http://www.timvw.be/wp-content/images/ooo2mysqladd.jpg" alt="Add MySQL Connector/J to classpath dialog" />
</p>

<p>
<img src="http://www.timvw.be/wp-content/images/ooo2mysqlsuccess.jpg" alt="Could load JDBC driver dialog" />
</p>


<p>
After that everything went smooth <img src='http://www.timvw.be/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  There are so many sites talking about the new release and all the new features but none of them seem to have experienced this. It makes me wonder if they have really tried it out..
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.timvw.be/problem-with-base-and-mysql-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
