<?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>Simon Zambrovski &#187; Simon Zambrovski | Categry: fun</title>
	<atom:link href="http://simon.zambrovski.org/category/fun/feed/" rel="self" type="application/rss+xml" />
	<link>http://simon.zambrovski.org</link>
	<description>&#34;One Cannot Not Communicate&#34; - Watzlawick</description>
	<lastBuildDate>Tue, 15 Nov 2011 00:15:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>JIRA &amp; Home Improvement</title>
		<link>http://simon.zambrovski.org/2010/05/jira-home-improvement/</link>
		<comments>http://simon.zambrovski.org/2010/05/jira-home-improvement/#comments</comments>
		<pubDate>Mon, 24 May 2010 22:36:33 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[fun]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[home improvement]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[jira]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[ticket system]]></category>

		<guid isPermaLink="false">http://simon.zambrovski.org/?p=256</guid>
		<description><![CDATA[Since I spend this summer in Germany, I started a big home improvement project. Well, I&#8217;m not Tim Taylor and my tools are not from Binford, but it is really a serious improvement for me. So the plan is to remodel the attic: insulate the roof, replace old single-glass windows by the double glazing, replace [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://simon.zambrovski.org/wp-content/uploads/2010/05/home_improvement.jpg" alt="" title="home_improvement" width="116" height="87" style="margin:10px; float:left;" /><br />
Since I spend this summer in Germany, I started a big home improvement project. Well, I&#8217;m not Tim Taylor and my tools are not from Binford, but it is really a serious improvement for me. So the plan is to remodel the attic: insulate the roof, replace old single-glass windows by the double glazing, replace the old floor and actually create a big room with light, heating and furniture. In the same time remodeling of the dining room on the second floor seemed reasonable, because the roof was not insulated there either. In doing so I faced the problem of managing many small tasks which depends on each other. <span id="more-256"></span></p>
<p>I played with Bugzilla for the 
<a  href="http://www.tlaplus.net/" onclick="javascript:pageTracker._trackPageview('/external/www.tlaplus.net/');" >site I hosted for TLA+</a> but I wanted to try something new and installed 
<a  href="http://www.atlassian.com/software/jira/" onclick="javascript:pageTracker._trackPageview('/external/www.atlassian.com/software/jira/');" >JIRA</a> on my home server. The nice story about it is: it is written in Java and it costs only 10$. I installed the bundled (which includes Tomcat) version on my old home server and used my MySQL DB for bugs. </p>
<h3>Switching the database</h3>
<p>After the default installation I changed the following Datasource configuration to switch from HSQL-DB to MySQL in conf/server.xml:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;Resource name=&quot;jdbc/JiraDS&quot;
  auth=&quot;Container&quot;
  type=&quot;javax.sql.DataSource&quot;
  driverClassName=&quot;com.mysql.jdbc.Driver&quot;
  url=&quot;jdbc:mysql://localhost/jira?autoReconnect=true
&amp;amp;useUnicode=true&amp;amp;characterEncoding=UTF8&quot;
  username=&quot;user&quot;
  password=&quot;secret&quot;
  maxActive=&quot;20&quot;
  validationQuery=&quot;select 1&quot;
/&gt;
</pre>
<p>And changed the dialect in atlassian-jira/WEB-INF/classes/entityengine.xml: </p>
<pre class="brush: xml; title: ; notranslate">
&lt;datasource name=&quot;defaultDS&quot; field-type-name=&quot;mysql&quot;
  helper-class=&quot;org.ofbiz.core.entity.GenericHelperDAO&quot;
  check-on-start=&quot;true&quot;
  use-foreign-keys=&quot;false&quot;
  use-foreign-key-indices=&quot;false&quot;
  check-fks-on-start=&quot;false&quot;
  check-fk-indices-on-start=&quot;false&quot;
  add-missing-on-start=&quot;true&quot; check-indices-on-start=&quot;true&quot;&gt;
    &lt;jndi-jdbc jndi-server-name=&quot;default&quot;
      jndi-name=&quot;java:comp/env/jdbc/JiraDS&quot;
    /&gt;
&lt;/datasource&gt;
</pre>
<h3>Integrating with Apache Webserver</h3>
<p>In addition, I don&#8217;t like entering ports into the browser, so I activated mod_jk Apache module and shifted the JIRA tomcats ports 50000 upwards: </p>
<pre class="brush: xml; title: ; notranslate">
&lt;Connector port=&quot;58080&quot; protocol=&quot;HTTP/1.1&quot;
  maxHttpHeaderSize=&quot;58192&quot;
  maxThreads=&quot;150&quot; minSpareThreads=&quot;25&quot; maxSpareThreads=&quot;75&quot;
  useBodyEncodingForURI=&quot;true&quot; enableLookups=&quot;false&quot;
  redirectPort=&quot;58443&quot;
  acceptCount=&quot;100&quot; connectionTimeout=&quot;20000&quot;
  disableUploadTimeout=&quot;true&quot;/&gt;
    &lt;Context path=&quot;/jira/&quot;
    docBase=&quot;${catalina.home}/atlassian-jira&quot;
    reloadable=&quot;false&quot;&gt;
    ...
&lt;/Connector&gt;
&lt;Connector port=&quot;58009&quot;
  enableLookups=&quot;false&quot;
  redirectPort=&quot;58443&quot;
  protocol=&quot;AJP/1.3&quot; /&gt;
</pre>
<p>Please note that also I changed the path to &#8220;/jira/&#8221;. So in order to access it from the browser, you need to type http://server:58080/jira/<br />
In 
<a  href="http://httpd.apache.org/" onclick="javascript:pageTracker._trackPageview('/external/httpd.apache.org/');" >Apache HTTPD Server</a> configuration, I loaded the 
<a  href="http://tomcat.apache.org/connectors-doc/" onclick="javascript:pageTracker._trackPageview('/external/tomcat.apache.org/connectors-doc/');" >mod_jk module</a> and configured a worker for JIRA:</p>
<pre class="brush: bash; title: ; notranslate">
# Where to find rkers.properties
# Update this path to match your conf directory location
# (put workers.properties next to httpd.conf)
JkWorkersFile /etc/apache2/workers.properties

# Where to put jk shared memory
# Update this path to match your local state directory or logs directory
JkShmFile     /var/lock/apache2/mod_jk.shm

# Where to put jk logs
# Update this path to match your logs directory location
# (put mod_jk.log next to access_log)
JkLogFile     /var/log/mod_jk.log

# Set the jk log level [debug/error/info]
JkLogLevel    error

# Select the timestamp log format
JkLogStampFormat &quot;[%a %b %d %H:%M:%S %Y] &quot;

#Mounts
JkMount /jira/* jira
</pre>
<p>The worker.properties file defines a worker using the Tomcat AJP13 connector:</p>
<pre class="brush: bash; title: ; notranslate">
#workers using ajp13
worker.list=jira

# Set properties for jira (ajp13)
worker.jira.type=ajp13
worker.jira.host=localhost
worker.jira.port=58009
</pre>
<h3>Let it mail</h3>
<p>For maximum comfort I tried to let my JIRA installation send me mails using my GMail mail account. I followed the 
<a  href="http://www.atlassian.com/software/jira/docs/v3.13/smtpconfig.html" onclick="javascript:pageTracker._trackPageview('/external/www.atlassian.com/software/jira/docs/v3.13/smtpconfig.html');" >instruction on the JIRA page</a>. </p>
<pre class="brush: xml; title: ; notranslate">
&lt;Resource name=&quot;mail/GmailSmtpServer&quot;
  auth=&quot;Container&quot;
  type=&quot;javax.mail.Session&quot;
  mail.smtp.host=&quot;smtp.googlemail.com&quot;
  mail.smtp.port=&quot;465&quot;
  mail.smtp.auth=&quot;true&quot;
  mail.smtp.user=&quot;myusername@gmail.com&quot;
  password=&quot;mypass&quot;
  mail.debug=&quot;true&quot;
  mail.smtp.starttls.enable=&quot;true&quot;
  mail.smtp.socketFactory.class=&quot;javax.net.ssl.SSLSocketFactory&quot;
/&gt;
</pre>
<p>I finished the setup and got the following error:</p>
<pre class="brush: java; title: ; notranslate">
com.atlassian.mail.MailException: javax.mail.MessagingException:
  Exception reading response; nested exception is:
        javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?
        at com.atlassian.mail.server.impl.SMTPMailServerImpl.send(SMTPMailServerImpl.java:191)
        at com.atlassian.mail.queue.SingleMailQueueItem.send(SingleMailQueueItem.java:47)
        at com.atlassian.mail.queue.MailQueueImpl.sendBuffer(MailQueueImpl.java:68)
        at com.atlassian.jira.service.services.mail.MailQueueService.run(MailQueueService.java:23)
        at com.atlassian.jira.service.JiraServiceContainerImpl.run(JiraServiceContainerImpl.java:67)
        at com.atlassian.jira.service.ServiceRunner.execute(ServiceRunner.java:48)
        at org.quartz.core.JobRunShell.run(JobRunShell.java:191)
        at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:516)
</pre>
<p>The problem results from the fact, that GMail uses TLS certificates which has to be imported as described 
<a  href="http://blog.richardadleta.com/2009/05/configuring-jira-to-use-gmail-via-smtp.html" onclick="javascript:pageTracker._trackPageview('/external/blog.richardadleta.com/2009/05/configuring-jira-to-use-gmail-via-smtp.html');" >here</a>. After executing the steps, my JIRA mails me on changes of the Issue states&#8230;</p>
<p>After all, I can create my issues and should focus on the home improvement again. But now I&#8217;m very well organized.</p>
]]></content:encoded>
			<wfw:commentRss>http://simon.zambrovski.org/2010/05/jira-home-improvement/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Home Entertainment</title>
		<link>http://simon.zambrovski.org/2009/12/home-entertainment/</link>
		<comments>http://simon.zambrovski.org/2009/12/home-entertainment/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 00:54:37 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[fun]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[1080p]]></category>
		<category><![CDATA[BD]]></category>
		<category><![CDATA[Broadcast]]></category>
		<category><![CDATA[Dolby]]></category>
		<category><![CDATA[DVB-C]]></category>
		<category><![CDATA[DVB-S]]></category>
		<category><![CDATA[DVB-T]]></category>
		<category><![CDATA[Full HD]]></category>
		<category><![CDATA[HDTV]]></category>
		<category><![CDATA[home entertainment]]></category>
		<category><![CDATA[PAL]]></category>
		<category><![CDATA[Screen]]></category>
		<category><![CDATA[television systems]]></category>
		<category><![CDATA[tv screens]]></category>

		<guid isPermaLink="false">http://simon.zambrovski.org/?p=243</guid>
		<description><![CDATA[The continously changing quality of television is an intersting phenomena. Most European countries plan, develop or already introduce high quality television systems. The current quality standard is called HDTV (Full HD 1080p) and is a standard for digital audio/video signal. This quality can be delivered used special equipment. This short post gives a little overview [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://simon.zambrovski.org/wp-content/uploads/2009/12/215px-Moderntimes.jpg" alt="Modern Times" title="Modern Times" width="215" height="324" style="float:right; margin: 5px;" /><br />
The continously changing quality of television is an intersting phenomena. Most European countries plan, develop or already introduce high quality television systems. The current quality standard is called HDTV (Full HD 1080p) and is a standard for digital audio/video signal. This quality can be delivered used special equipment.  This short post gives a little overview about the subject.</p>
<h3>The Screen</h3>
<p>In order to view the beautiful pictures delivered from the source, you need a TV set. In my childhood we had a monochrome Cathode Ray Tube (CRT) TV set, a huge box, incredible heavy, full of electrical components. Produced in Russia, its handle broke and we had nippers near the TV set in order to switch the channels (they were switched by rotating the handle). The next TV set we had could reproduce color but had approximately 12&#8243; screen size. Its channels could be switched using small buttons. In the nineties, the time of big CRTs begun. A normal person could effort a 30&#8243; CRT and of course it had a remote control. I saw my first plasma screen on an exhibition in Germany &#8211; I was thrilled by its relative small depth in comparison to a CRT. But the plasma screens of the nineties were heavy, consumed about 400W and had about 8 fans, which were pretty loud. Finally, the time of LCDs began and now the technology seem to be one of the main technologies in the market of TV sets. It is difficult to find a store selling CRTs in Germany. <span id="more-243"></span><br />
A LCD screen has several parameters. Some of them are just attempts of vendors to deliver technology to the market before it is really ready. A good example of this is contrast ratio: in fact no sane person want to know what contrast ratio is delivered by the TV screen, it should be just enough. Other parameters are saying something about the quality of the picture you can see e.g. the resolution of the screen. The resolution of 1920 x 1080 pixels is the most common resolution of current Full HD (1080p) TV screens.</p>
<h3>Source of Recorded Video</h3>
<p>After everyone bought hundreds of movies on the Video Home System (VHS) cassetes, the industry changed the technology from a tape to a disc. The Digital Versatile Disc (DVD) killed the VHS during a decade in order to be killed by the new standard called Blue Ray Disc (BD). To explain the difference in one sentence: DVD delivers only PAL quality (576p, or 576 lines), BD delivers 1080p (1080 lines). A remarkeable difference, but not all movies profit from a higher quality. So take a chance to buy old movies, where the higher resolution doesn&#8217;t play a role on DVD, before you have to pay for an expensive BD.</p>
<h3>Source of Broadcasted Video</h3>
<p>In addition to high quality recorded video source, you can receve a broadcast program. In old days, the television broadcast was analog. Since two years, the analog broadcast is being scaled back in Germany and is being replaced by the Digital Video Broadcast-Terrestical standard (DVB-T). Current DVB-T standard is not designed to deliver HDTV, but eventually it will be replaced by DVB-T2. There are two other ways to deliver the video program: cable or satellite. The corresponding standards are called DVB-S (for Satellite) and DVB-C (Cable). Both standards can deliver digital pictures in HDTV (1080p). Most offers of channels in HDTV are encoded and not free. Still, there is a reason for fees that every German having a TV set has to pay: the public channels ARD and ZDF will be transmitted in HDTV 
<a  href="http://www.ard-digital.de/HDTV/Startseite-HDTV" onclick="javascript:pageTracker._trackPageview('/external/www.ard-digital.de/HDTV/Startseite-HDTV');" >starting in 2010</a>, 
<a  href="http://www.arte.tv/de/Aktuelles/2199990.html" onclick="javascript:pageTracker._trackPageview('/external/www.arte.tv/de/Aktuelles/2199990.html');" >arte broadcasts the HDTV already</a>, since the middle of 2008.</p>
<h3>The Sound</h3>
<p>In order to complete the high-quality cinema-like felling in the living room, the sound system should support something like 5.1 dolby surround. This inlcludes a set of four boxes, a center loudspeaker, a subwoofer and an dolby-surround amplifier.</p>
<h3>Conclusion</h3>
<p>I watched a wonderful movie on arte tonight. The beautiful pictures deliverd by a Full HD 1080p screen and the nice music from processed by the complex logic of the digital amplifier. It was Charlie Chaplins&#8217; &#8220;Modern Times&#8221;, created by his genious in 1936 in USA: a restored black-white silent movie. A real masterpiece&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://simon.zambrovski.org/2009/12/home-entertainment/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Eclipse p2 for Sale</title>
		<link>http://simon.zambrovski.org/2009/07/eclipse-p2-for-sale/</link>
		<comments>http://simon.zambrovski.org/2009/07/eclipse-p2-for-sale/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 01:31:33 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[eclipse]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Eclipse p2 google fun]]></category>
		<category><![CDATA[search engine]]></category>

		<guid isPermaLink="false">http://simon.zambrovski.org/?p=221</guid>
		<description><![CDATA[Google seems to have a funny interpretation of the search and an interesting strategy for advertisements. I was looking for a repository to get Subclipse, because the tigris.org page was down for maintenance. So I opened Google (the German version of it http://www.google.de/) to look for &#8220;Sublipse p2&#8243;. On the right side of the page, [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin: 5px; float:right;" src="http://simon.zambrovski.org/wp-content/uploads/2009/07/eclipse_p2.png" alt="Eclipse Ad" /><br />
Google seems to have a funny interpretation of the search and an interesting strategy for advertisements. I was looking for a repository to get Subclipse, because the 
<a  href="http://subclipse.tigris.org/" onclick="javascript:pageTracker._trackPageview('/external/subclipse.tigris.org/');" >tigris.org</a> page was down for maintenance. So I opened Google (the German version of it http://www.google.de/) to look for 
<a  href="http://www.google.de/search?hl=de&amp;q=Subclipse+p2&amp;btnG=Suche&amp;lr=" onclick="javascript:pageTracker._trackPageview('/external/www.google.de/search');" >&#8220;Sublipse p2&#8243;</a>. On the right side of the page, the ad has been displayed&#8230; (The translation of it from German is: <strong>Buy Eclipse p2, thousands of offers. Eclipse p2: low prices guaranteed&#8230;</strong>) </p>
<p>It is impressive, since I was not searching for Eclipse, but the Big Brother was able to establish the semantic link between Sublipse and Eclipse and look for Eclipse &amp; p2. It turns out that p2 is Pentium II and Eclipse is the Fujitsu Siemens Notebook.</p>
<p>For all non-geeks among us: 
<a  href="http://www.eclipse.org/" onclick="javascript:pageTracker._trackPageview('/external/www.eclipse.org/');" >Eclipse</a> is a the famous software platform and integrated development environment built on top of it. P2 is the system for provisioning and installation of components inside of Eclipse. Eclipse is the example for the open-source development and is available free of charge.</p>
]]></content:encoded>
			<wfw:commentRss>http://simon.zambrovski.org/2009/07/eclipse-p2-for-sale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SOA-Boom starts 2008</title>
		<link>http://simon.zambrovski.org/2007/02/soa-boom-startet-2008/</link>
		<comments>http://simon.zambrovski.org/2007/02/soa-boom-startet-2008/#comments</comments>
		<pubDate>Mon, 26 Feb 2007 12:58:31 +0000</pubDate>
		<dc:creator>simon</dc:creator>
				<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://simon.zambrovski.org/?p=29</guid>
		<description><![CDATA[According to &#8220;Computer Zeitung&#8221;( &#8230;), SOA-Boom starts in 2008. Please make an entry in your personal schedule.]]></description>
			<content:encoded><![CDATA[<p>According to &#8220;Computer Zeitung&#8221;(
<a  href="http://www.computer-zeitung.de/article.html?thes=&amp;art=/articles/2007007/30969907_ha_CZ.html" title="SOA-Boom startet 2008" onclick="javascript:pageTracker._trackPageview('/external/www.computer-zeitung.de/article.html');" >&#8230;</a>), SOA-Boom starts in 2008. Please make an entry in your personal schedule.</p>
]]></content:encoded>
			<wfw:commentRss>http://simon.zambrovski.org/2007/02/soa-boom-startet-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogs on the internet map&#8230;</title>
		<link>http://simon.zambrovski.org/2006/08/blogs-on-the-internet-map/</link>
		<comments>http://simon.zambrovski.org/2006/08/blogs-on-the-internet-map/#comments</comments>
		<pubDate>Wed, 23 Aug 2006 16:01:00 +0000</pubDate>
		<dc:creator>simon</dc:creator>
				<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://simon.zambrovski.org/?p=23</guid>
		<description><![CDATA[And this link is for this blog, in order to be listed. For a blog only 25 clicks or 7$. As Dire Straits said &#8220;Money For Nothing&#8230;&#8221;.]]></description>
			<content:encoded><![CDATA[<p>And this link is for this blog, in order to be listed. For a blog only 25 clicks or 7$. As Dire Straits said &#8220;Money For Nothing&#8230;&#8221;.</p>
<p>
<a  href="http://www.internetmap.info/cgi-bin/go.cgi?site_id=4870" target=_blank onclick="javascript:pageTracker._trackPageview('/external/www.internetmap.info/cgi-bin/go.cgi');" ><img src="http://www.internetmap.info/images/im_88x31.gif" border=0 alt="Internet Map"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://simon.zambrovski.org/2006/08/blogs-on-the-internet-map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet map</title>
		<link>http://simon.zambrovski.org/2006/08/internet-map/</link>
		<comments>http://simon.zambrovski.org/2006/08/internet-map/#comments</comments>
		<pubDate>Wed, 23 Aug 2006 15:49:00 +0000</pubDate>
		<dc:creator>simon</dc:creator>
				<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://simon.zambrovski.org/?p=22</guid>
		<description><![CDATA[A website for displaying the internet map. In order to be displayed one require 150 clicks or 15$. Funny idea&#8230; You can support zonakaifa.de by clicking on the following link:]]></description>
			<content:encoded><![CDATA[<p>A website for displaying the internet map. In order to be displayed one require 150 clicks or 15$. Funny idea&#8230; You can support 
<a  href="http://www.zonakaifa.de/" onclick="javascript:pageTracker._trackPageview('/external/www.zonakaifa.de/');" >zonakaifa.de</a> by clicking on the following link:<br />

<a  href="http://www.internetmap.info/cgi-bin/go.cgi?site_id=4865" target=_blank onclick="javascript:pageTracker._trackPageview('/external/www.internetmap.info/cgi-bin/go.cgi');" ><img src="http://www.internetmap.info/images/88x31_gb.gif" border=0 alt="Internet Map"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://simon.zambrovski.org/2006/08/internet-map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Postbank Firewall experience or what is ICMP</title>
		<link>http://simon.zambrovski.org/2005/09/postbank-firewall-experience-or-what-is-icmp/</link>
		<comments>http://simon.zambrovski.org/2005/09/postbank-firewall-experience-or-what-is-icmp/#comments</comments>
		<pubDate>Mon, 26 Sep 2005 13:36:00 +0000</pubDate>
		<dc:creator>simon</dc:creator>
				<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://simon.zambrovski.org/?p=14</guid>
		<description><![CDATA[The postbank uses firewalls with invalid set-up. All ICMP-Traffic is dropped. This causes problems while accessing the site over a Linux 2.4 Router with NAT (The problem background can be found in German here: http://portal.suse.de/sdb/de/2001/11/cg_pmtu2.html) Basically, it is the handshaking of the packet size based on MTU of PPPoE by packets with DF-flag (Don&#8217;t fragment) [...]]]></description>
			<content:encoded><![CDATA[<p>The postbank uses firewalls with invalid set-up. All ICMP-Traffic is dropped. This causes problems while accessing the site over a Linux 2.4 Router with NAT (The problem background can be found in German here: 
<a  href="http://portal.suse.de/sdb/de/2001/11/cg_pmtu2.html" onclick="javascript:pageTracker._trackPageview('/external/portal.suse.de/sdb/de/2001/11/cg_pmtu2.html');" >http://portal.suse.de/sdb/de/2001/11/cg_pmtu2.html</a>)</p>
<p>Basically, it is the handshaking of the packet size based on MTU of PPPoE by packets with DF-flag  (Don&#8217;t fragment) set. This handshaking is based on special ICMP command.</p>
]]></content:encoded>
			<wfw:commentRss>http://simon.zambrovski.org/2005/09/postbank-firewall-experience-or-what-is-icmp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Webdav experiences</title>
		<link>http://simon.zambrovski.org/2005/08/webdav-experiences/</link>
		<comments>http://simon.zambrovski.org/2005/08/webdav-experiences/#comments</comments>
		<pubDate>Thu, 18 Aug 2005 16:27:00 +0000</pubDate>
		<dc:creator>simon</dc:creator>
				<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://simon.zambrovski.org/?p=12</guid>
		<description><![CDATA[Today I was suprised about the bad compatibility of the WebDav system component. I wanted to upload some data on an Linux Apache Web Server with installed Web-DAV module, with Authorization based on AuthType digest from my WindowsXP workstation. In following I describe the activities needed for that simple operation: Opened &#8220;Network neighbourhood&#8221; added new [...]]]></description>
			<content:encoded><![CDATA[<p>Today I was suprised about the bad compatibility of the WebDav system component. I wanted to upload some data on an Linux Apache Web Server with installed Web-DAV module, with Authorization based on AuthType digest  from my WindowsXP workstation.<br />
In following I describe the activities needed for that simple operation:</p>
<ol>
<li>Opened &#8220;Network neighbourhood&#8221; added new Connection, entered a server name and directory.</li>
<li>A dialog appered in order to provide the auth-information. Entered my username and my password.</li>
<li>Same dialog apperead again, my username was replaced with servername\username</li>
<li>Asked the system administrator =&gt; the webfolder doesn&#8217;t work with digest authorisation, please use another client</li>
<li>Tried Eclipse Web-Dav integration, but forgot the trailing &#8220;/&#8221; in the directory name =&gt; Error : Bad request.</li>
<li>Entered in google: webdav client windows.</li>
<li>Took the first link: http://www.webdav.org/projects/</li>
<li>Scrolled a little, selected &#8220;WebDav Explorer&#8221; and downloaded</li>
<li>The zip-File contained of severeal batch files and a jar archive.</li>
<li>Started the program =&gt; Couldn&#8217;t understand how to use it in 2 minutes, managed to copy one file, but not a group of files.</li>
<li>Returned to google and selected the second link (FTP Client with WebDav support from bitkinex.com)</li>
<li>Downloaded a trial version and installed it.</li>
<li>A huge two-window application appeared on the screen. Managed to input the server data.</li>
<li>Connected. Tried to copy files. =&gt; Errors during copy. The process took 2 minutes. Checked if the files were there =&gt; No files on server.</li>
<li>Used server property (context pulldown-menu) to discover the dialog &#8220;Paths on server&#8221;</li>
<li>Entered my directory, reconnected.</li>
<li>Copied files and verified the existence =&gt; Files were there. The program is working only 30-days in a trial version.</li>
<li>Went back to google and entered &#8220;windows commander webdav&#8221; in order to find a plug-in for &#8220;Total Commander&#8221;.</li>
<li>Found a plugin and downloaded it and installed.</li>
<li>Created a new connection but forgot the trailing &#8220;/&#8221; again. =&gt; Error : Bad Method.</li>
<li>Analysed the log =&gt; TotalCMD tries to execute PROPFIND &#8220;/&#8221;.</li>
<li>Downloaded the code of the plugin. Opened the plugin in Visual Studio.</li>
<li>Found the corresponding place, on which the plugin calculates the path.</li>
<li>Understood, that the trailing &#8220;/&#8221; is neede in the path</li>
<li>Created a new connection with a trailing &#8220;/&#8221; after the directory name. =&gt; It worked fine, I could transfer files.</li>
<li>Tried the same thing in Eclipse adding a trailing &#8220;/&#8221; to the path. =&gt; It worked too.</li>
</ol>
<p>So my questions are:</p>
<ol>
<li>Is it that difficult to verify the trailing &#8220;/&#8221; in a tool?</li>
<li>Why so many people supply so bad tools, that the extensive reading of manual is needed in order to find out how the program works?</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://simon.zambrovski.org/2005/08/webdav-experiences/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

