<?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>Object Definitions Blog &#187; web</title>
	<atom:link href="http://www.objectdefinitions.com/odblog/category/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.objectdefinitions.com/odblog</link>
	<description>Software Development - random theories, code snippits and opinions</description>
	<lastBuildDate>Tue, 06 Sep 2011 22:43:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>New jtimeseries project on sourceforge</title>
		<link>http://www.objectdefinitions.com/odblog/2010/new-jtimeseries-project-on-sourceforge/</link>
		<comments>http://www.objectdefinitions.com/odblog/2010/new-jtimeseries-project-on-sourceforge/#comments</comments>
		<pubDate>Thu, 20 May 2010 07:33:29 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[jtimeseries]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[metrics]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[profiling]]></category>
		<category><![CDATA[stats]]></category>
		<category><![CDATA[timeseries]]></category>

		<guid isPermaLink="false">http://www.objectdefinitions.com/odblog/?p=264</guid>
		<description><![CDATA[For the last year and a half I have been hard at work at a new open source project jtimeseries.
This has finally made it onto sourceforge!
So what can you do with this jtimeseries thing?
Quite a lot, already. Let me explain how this project was conceived&#8230;.
Initially, I was looking for a java based API which I [...]]]></description>
		<wfw:commentRss>http://www.objectdefinitions.com/odblog/2010/new-jtimeseries-project-on-sourceforge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Browser search bar integration for safari bookshelf</title>
		<link>http://www.objectdefinitions.com/odblog/2009/browser-search-bar-integration-for-safari-bookshelf/</link>
		<comments>http://www.objectdefinitions.com/odblog/2009/browser-search-bar-integration-for-safari-bookshelf/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 09:15:13 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[rants and opinions]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.objectdefinitions.com/odblog/2009/browser-search-bar-integration-for-safari-bookshelf/</guid>
		<description><![CDATA[For quite a while now I&#8217;ve been a subscriber to O&#8217;Reilly Safari bookself. It contains a lot of useful books on a wide range of technical and programming topics.
Although there is a good selection of material on the site, I haven&#8217;t really made the best use of it until now, since it has in general [...]]]></description>
		<wfw:commentRss>http://www.objectdefinitions.com/odblog/2009/browser-search-bar-integration-for-safari-bookshelf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Generating jnlp files from a jsp &#8211; http headers for IE</title>
		<link>http://www.objectdefinitions.com/odblog/2007/generating-jnlp-files-from-a-jsp-http-headers-for-ie/</link>
		<comments>http://www.objectdefinitions.com/odblog/2007/generating-jnlp-files-from-a-jsp-http-headers-for-ie/#comments</comments>
		<pubDate>Thu, 20 Sep 2007 14:18:25 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.objectdefinitions.com/odblog/2007/generating-jnlp-files-from-a-jsp-http-headers-for-ie/</guid>
		<description><![CDATA[There are some advantages in generating a jnlp file for a webstart application from a .jsp. If you do this, you can dynamically generate the jnlp content (e.g. URLs, system properties, startup parameters) based upon the applications current deployment settings or environment.
However, as usual there are gotchas. IE often fails to recognise the webstart app, [...]]]></description>
		<wfw:commentRss>http://www.objectdefinitions.com/odblog/2007/generating-jnlp-files-from-a-jsp-http-headers-for-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Host names should not contain underscores (especially when connecting with Apache HttpClient)</title>
		<link>http://www.objectdefinitions.com/odblog/2007/host-names-should-not-contain-underscores-especially-when-connecting-with-apache-httpclient/</link>
		<comments>http://www.objectdefinitions.com/odblog/2007/host-names-should-not-contain-underscores-especially-when-connecting-with-apache-httpclient/#comments</comments>
		<pubDate>Tue, 21 Aug 2007 16:29:46 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.objectdefinitions.com/odblog/2007/host-names-should-not-contain-underscores-especially-when-connecting-with-apache-httpclient/</guid>
		<description><![CDATA[We had a problem connecting to a tomcat service using HttpClient 3.1 on my current project. After a lot of hunting I tracked this down to the URI class in Apache HttpClient failing to parse the port number correctly. Several of our servers have been mis-configured with hostnames which have underscores. It seems the underscores [...]]]></description>
		<wfw:commentRss>http://www.objectdefinitions.com/odblog/2007/host-names-should-not-contain-underscores-especially-when-connecting-with-apache-httpclient/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why is Tomcat session replication not working?</title>
		<link>http://www.objectdefinitions.com/odblog/2007/why-are-my-tomcat-sessions-not-replicating/</link>
		<comments>http://www.objectdefinitions.com/odblog/2007/why-are-my-tomcat-sessions-not-replicating/#comments</comments>
		<pubDate>Thu, 17 May 2007 13:58:17 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.objectdefinitions.com/odblog/2007/why-are-my-tomcat-sessions-not-replicating/</guid>
		<description><![CDATA[Have you added the magic &#60;/distributable&#62; element to the top of your web application&#8217;s web.xml?
How nodes in the cluster are identified
Tomcats in the cluster identify themselves on a multicast address
So you should see an entry in each tomcat&#8217;s catalina.out, for every other tomcat which joins the cluster.

If this is working, it is likely that your [...]]]></description>
		<wfw:commentRss>http://www.objectdefinitions.com/odblog/2007/why-are-my-tomcat-sessions-not-replicating/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Undeploying tomcat web app fails due to locked files</title>
		<link>http://www.objectdefinitions.com/odblog/2007/undeploying-tomcat-web-app-fails-due-to-locked-files/</link>
		<comments>http://www.objectdefinitions.com/odblog/2007/undeploying-tomcat-web-app-fails-due-to-locked-files/#comments</comments>
		<pubDate>Mon, 23 Apr 2007 09:58:32 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.objectdefinitions.com/odblog/2007/undeploying-tomcat-web-app-fails-due-to-locked-files/</guid>
		<description><![CDATA[The continuous build for my current project was failing occasionally due to problems undeploying a web application from Tomcat 5.5. Tomcat was holding locks on a jar file within WEB-INF/lib, preventing the web app from being undeployed or deleted
It seems there is a workaround for this, at least for test systems (I don&#8217;t think this [...]]]></description>
		<wfw:commentRss>http://www.objectdefinitions.com/odblog/2007/undeploying-tomcat-web-app-fails-due-to-locked-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

