<?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>indiWiz.com &#187; apache</title>
	<atom:link href="http://indiwiz.com/tag/apache/feed/" rel="self" type="application/rss+xml" />
	<link>http://indiwiz.com</link>
	<description>Subhash&#039;s Tech Log</description>
	<lastBuildDate>Sun, 29 Apr 2012 15:11:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Subversion project moving into Apache Foundation</title>
		<link>http://indiwiz.com/2009/11/16/subversion-project-moving-into-apache-foundation/</link>
		<comments>http://indiwiz.com/2009/11/16/subversion-project-moving-into-apache-foundation/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 05:45:46 +0000</pubDate>
		<dc:creator>Subhash Chandran</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[apache]]></category>

		<guid isPermaLink="false">http://indiwiz.com/?p=580</guid>
		<description><![CDATA[I was surprised when my friend Senthil (he is a Subversion committer) broke the news that Subversion project is moving to Apache Software Foundation. Read the official Collabnet announcement.]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>I was surprised when my friend <a href="http://www.stylesen.org/">Senthil</a> (he is a Subversion committer) <a href="http://www.stylesen.org/now_an_apache_committer_thanks_subversion">broke the news</a> that Subversion project is moving to Apache Software Foundation. Read the <a href="http://www.collab.net/news/press/2009/svn-asf.html">official Collabnet announcement</a>.</p>
<div class="shr-publisher-580"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://indiwiz.com/2009/11/16/subversion-project-moving-into-apache-foundation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache Software Foundation&#8217;s Older Releases</title>
		<link>http://indiwiz.com/2009/07/07/apache-software-foundations-older-releases/</link>
		<comments>http://indiwiz.com/2009/07/07/apache-software-foundations-older-releases/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 17:28:14 +0000</pubDate>
		<dc:creator>Subhash Chandran</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[apache]]></category>

		<guid isPermaLink="false">http://indiwiz.com/?p=372</guid>
		<description><![CDATA[I was surprised to find that Apache Software Foundation&#8217;s older software releases were not present in their distribution site. They have a new site archive.apache.org/dist where they archive older releases.]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>I was surprised to find that Apache Software Foundation&#8217;s older software releases were not present in their <a href="http://apache.org/dist/">distribution site</a>. They have a new site <a href="http://archive.apache.org/dist/">archive.apache.org/dist</a> where they archive older releases.</p>
<div class="shr-publisher-372"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://indiwiz.com/2009/07/07/apache-software-foundations-older-releases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up URL Shortening Servlet behind Apache</title>
		<link>http://indiwiz.com/2009/06/18/setting-up-url-shortening-servlet-behind-apache/</link>
		<comments>http://indiwiz.com/2009/06/18/setting-up-url-shortening-servlet-behind-apache/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 10:33:56 +0000</pubDate>
		<dc:creator>Subhash Chandran</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[wiztools]]></category>

		<guid isPermaLink="false">http://indiwiz.com/?p=335</guid>
		<description><![CDATA[Today I worked on setting up my URL redirection servlet (download) in our office to share internal links with my colleagues. I deployed it in JBoss. When I deployed this module as r.war, JBoss complained saying java.lang.IllegalArgumentException: Prefix string too short. I renamed the war as redir.war and deployed it. When I tried accessing the [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>Today I worked on setting up my <a href="http://code.google.com/p/wiztools/source/browse/redir-servlet/trunk/README.txt">URL redirection servlet</a> (<a href="http://wiztools.googlecode.com/">download</a>) in our office to share internal links with my colleagues. I deployed it in JBoss. When I deployed this module as <tt>r.war</tt>, JBoss complained saying <tt>java.lang.IllegalArgumentException: Prefix string too short</tt>. I renamed the war as <tt>redir.war</tt> and deployed it.</p>
<p>When I tried accessing the JBoss URL from another system in the network, I found that JBoss was not accepting connection from other systems in the network. Then I configured Apache to use <em>ProxyPass</em>:</p>
<pre>
ProxyPass /r http://localhost:1111/redir
ProxyPassReverse /r http://localhost:1111/redir
</pre>
<p><br/></p>
<p>Note: JBoss was listening in port 1111 in my case. I added this to my apache configuration and restarted Apache. Now I have a cute URL shortening service which is accessible as <em>http://myhost/r/&lt;string&gt;</em>.</p>
<div class="shr-publisher-335"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://indiwiz.com/2009/06/18/setting-up-url-shortening-servlet-behind-apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

