<?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>Intelligrape  Groovy &#38; Grails Blogs &#187; tomcat</title>
	<atom:link href="http://www.intelligrape.com/blog/tag/tomcat/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.intelligrape.com/blog</link>
	<description></description>
	<lastBuildDate>Thu, 02 Feb 2012 07:48:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
			<title>Intelligrape  Groovy &amp; Grails Blogs</title>
			<url>http://www.intelligrape.com/blog/wp-content/uploads/2011/05/favicon2.ico</url>
			<link>http://www.intelligrape.com/blog</link>
			<width></width>
			<height></height>
			<description></description>
		</image>		<item>
		<title>Increasing the connection timeout between browser and the tomcat server</title>
		<link>http://www.intelligrape.com/blog/2011/12/21/increasing-the-connection-timeout-between-browser-and-the-tomcat-server/</link>
		<comments>http://www.intelligrape.com/blog/2011/12/21/increasing-the-connection-timeout-between-browser-and-the-tomcat-server/#comments</comments>
		<pubDate>Wed, 21 Dec 2011 12:38:36 +0000</pubDate>
		<dc:creator>Tarun Pareek</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[server configuration]]></category>
		<category><![CDATA[tomcat]]></category>

		<guid isPermaLink="false">http://www.intelligrape.com/blog/?p=4785</guid>
		<description><![CDATA[Hi,

There is a case stuck recently in my project where i need to increase the connection timeout between browser and the server, because of the reason before the response get completed server leave the connection which result in no response. My colleague Himanshu told me to change the setting in server.xml, which help in my [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,<br />
<br />
There is a case stuck recently in my project where i need to increase the connection timeout between browser and the server, because of the reason before the response get completed server leave the connection which result in no response. My colleague <a href="http://www.intelligrape.com/blog/author/himanshu/">Himanshu</a> told me to change the setting in server.xml, which help in my purpose.<br />
<br />
To increase the connection timeout on tomcat server follow the following steps :<br />
<br />
1. Open the file server.xml residing in tomcat6/conf/.<br />
2. You just need to set variable connectionTimeout in it to Value in Milliseconds.(i.e 1000 milliseconds = 1 second)<br />
<br />
For example :<br />
<br />
File : server.xml</p>
<pre class="brush: java;">
&lt;Connector port=&quot;8080&quot; protocol=&quot;HTTP/1.1&quot;  connectionTimeout=&quot;20000&quot; URIEncoding=&quot;UTF-8&quot;            redirectPort=&quot;8443&quot; /&gt;</pre>
<p>
I thought it will be useful to share, hope it helps.<br />
&nbsp;<br />
</p>
<p>Thanks,<br />
Tarun Pareek<br />
tarun@intelligrape.com<br />
<a href="http://in.linkedin.com/in/tarunpareek">http://in.linkedin.com/in/tarunpareek</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelligrape.com/blog/2011/12/21/increasing-the-connection-timeout-between-browser-and-the-tomcat-server/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tomcat 6 in-memory session replication</title>
		<link>http://www.intelligrape.com/blog/2010/07/22/tomcat-6-in-memory-session-replication/</link>
		<comments>http://www.intelligrape.com/blog/2010/07/22/tomcat-6-in-memory-session-replication/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 14:45:49 +0000</pubDate>
		<dc:creator>Abhishek Tejpaul</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[application server]]></category>
		<category><![CDATA[memory session replication]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[session replication in tomcat]]></category>
		<category><![CDATA[tomcat]]></category>
		<category><![CDATA[tomcat 6]]></category>

		<guid isPermaLink="false">http://www.intelligrape.com/blog/?p=1374</guid>
		<description><![CDATA[Hi All,
Here are the few basic steps that you need to follow in order to achieve the in-memory session replication between two or more Tomcat 6 instances. 
This blog refers the Apache Tomcat documentation as found here: http://tomcat.apache.org/tomcat-6.0-doc/cluster-howto.html.
The Tomcat documentation provides more detailed explanation of the Clustering concepts as well as the definition of tags, [...]]]></description>
			<content:encoded><![CDATA[<p>Hi All,</p>
<p>Here are the few basic steps that you need to follow in order to achieve the in-memory session replication between two or more Tomcat 6 instances. </p>
<p>This blog refers the Apache Tomcat documentation as found here: <a href="http://tomcat.apache.org/tomcat-6.0-doc/cluster-howto.html" target="_blank">http://tomcat.apache.org/tomcat-6.0-doc/cluster-howto.html</a>.<br />
The Tomcat documentation provides more detailed explanation of the Clustering concepts as well as the definition of tags, attributes etc. used in <strong>server.xml</strong> file.</p>
<p><strong>Step 1:</strong> Include the <strong>&lt;distributable&gt;</strong> tag in <strong>web.xml</strong> file i.e. you can simple write the following line in your deployment descriptor(i.e. web.xml):</p>
<blockquote>

<div class="wp_syntax"><div class="code"><pre class="groovy"> <span style="color: #66cc66;">&lt;</span>distributable /<span style="color: #66cc66;">&gt;</span></pre></div></div>

</blockquote>
<p>Please read the following link to know more about this tag: <a href="http://wiki.metawerx.net/wiki/Web.xml.Distributable" target="_blank">http://wiki.metawerx.net/wiki/Web.xml.Distributable</a></p>
<p><strong>Step 2:</strong> Add the following lines of XML in the <strong>server.xml</strong> file inside the <strong>&lt;Engine&gt;</strong> element/tag:</p>
<blockquote>

<div class="wp_syntax"><div class="code"><pre class="groovy"><span style="color: #66cc66;">&lt;</span>Engine name<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Catalina&quot;</span> defaultHost<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;localhost&quot;</span><span style="color: #66cc66;">&gt;</span>
      <span style="color: #66cc66;">&lt;</span>Cluster className<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;org.apache.catalina.ha.tcp.SimpleTcpCluster&quot;</span>
            channelSendOptions<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;8&quot;</span><span style="color: #66cc66;">&gt;</span>
                     <span style="color: #66cc66;">&lt;</span>Manager className<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;org.apache.catalina.ha.session.DeltaManager&quot;</span>
                      expireSessionsOnShutdown<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;false&quot;</span> notifyListenersOnReplication<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;true&quot;</span>/<span style="color: #66cc66;">&gt;</span>
                     <span style="color: #66cc66;">&lt;</span>Channel className<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;org.apache.catalina.tribes.group.GroupChannel&quot;</span><span style="color: #66cc66;">&gt;</span> 
                               <span style="color: #66cc66;">&lt;</span>Membership className<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;org.apache.catalina.tribes.membership.McastService&quot;</span> 
                               address<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;228.0.0.4&quot;</span> port<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;45564&quot;</span> frequency<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;500&quot;</span> dropTime<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;3000&quot;</span>/<span style="color: #66cc66;">&gt;</span> 
                              <span style="color: #66cc66;">&lt;</span>Receiver className<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;org.apache.catalina.tribes.transport.nio.NioReceiver&quot;</span> 
                                 address<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;auto&quot;</span> port<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;4000&quot;</span> autoBind<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;100&quot;</span> selectorTimeout<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;5000&quot;</span> maxThreads<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;6&quot;</span>/<span style="color: #66cc66;">&gt;</span>
                               <span style="color: #66cc66;">&lt;</span>Sender className<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;org.apache.catalina.tribes.transport.ReplicationTransmitter&quot;</span><span style="color: #66cc66;">&gt;</span> 
                                             <span style="color: #66cc66;">&lt;</span>Transport className<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;org.apache.catalina.tribes.transport.nio.PooledParallelSender&quot;</span>/<span style="color: #66cc66;">&gt;</span> 
                                <span style="color: #66cc66;">&lt;</span>/Sender<span style="color: #66cc66;">&gt;</span>
                      <span style="color: #66cc66;">&lt;</span>Interceptor className<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;org.apache.catalina.tribes.group.interceptors.TcpFailureDetector&quot;</span>/<span style="color: #66cc66;">&gt;</span>
                      <span style="color: #66cc66;">&lt;</span>Interceptor className<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;org.apache.catalina.tribes.group.interceptors.MessageDispatch15Interceptor&quot;</span>/<span style="color: #66cc66;">&gt;</span>
                  <span style="color: #66cc66;">&lt;</span>/Channel<span style="color: #66cc66;">&gt;</span>
           <span style="color: #66cc66;">&lt;</span>Valve className<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;org.apache.catalina.ha.tcp.ReplicationValve&quot;</span> filter<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&quot;</span>/<span style="color: #66cc66;">&gt;</span> 
          <span style="color: #66cc66;">&lt;</span>Valve className<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;org.apache.catalina.ha.session.JvmRouteBinderValve&quot;</span>/<span style="color: #66cc66;">&gt;</span> 
          <span style="color: #66cc66;">&lt;</span>Deployer className<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;org.apache.catalina.ha.deploy.FarmWarDeployer&quot;</span> 
                   tempDir<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;/tmp/war-temp/&quot;</span> deployDir<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;/tmp/war-deploy/&quot;</span> watchDir<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;/tmp/war-listen/&quot;</span>
                   watchEnabled<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;false&quot;</span>/<span style="color: #66cc66;">&gt;</span> 
                   <span style="color: #66cc66;">&lt;</span>ClusterListener className<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;org.apache.catalina.ha.session.JvmRouteSessionIDBinderListener&quot;</span>/<span style="color: #66cc66;">&gt;</span>
                  <span style="color: #66cc66;">&lt;</span>ClusterListener className<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;org.apache.catalina.ha.session.ClusterSessionListener&quot;</span>/<span style="color: #66cc66;">&gt;</span>
     <span style="color: #66cc66;">&lt;</span>/Cluster<span style="color: #66cc66;">&gt;</span>
 .
 .
 .
 .
 <span style="color: #66cc66;">&lt;</span>/Engine<span style="color: #66cc66;">&gt;</span></pre></div></div>

</blockquote>
<p>Please note that there might be some other elements such as <strong>&lt;Host&gt;, &lt;Realm&gt; </strong>etc. inside the <strong>&lt;Engine&gt;</strong> element. Also, for each tomcat instance the value defined for the <strong>&#8216;port&#8217;</strong> attribute of the <strong>&lt;Receiver&gt;</strong> tag must be unique.</p>
<p>And, that&#8217;s all. You now have a basic session-replication in place. Your sessions are replicated amongst all the tomcat instances which are part of your cluster.</p>
<p><strong>NOTE:</strong> Please make sure if you make any changes to the &#8220;<strong>context.xml</strong>&#8221; file, you have to delete the following xml file located in the <strong>&lt;TOMCAT_HOME&gt;/conf/Catalina/localhost/{yourAppName}.xml</strong>. If you don&#8217;t delete this file, then your changes will be ignored and the settings defined in this file will take effect.</p>
<p>Cheers!!!</p>
<p>Abhishek Tejpaul<br />
abhishek@intelligrape.com<br />
[Intelligrape Software Pvt. Ltd.]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelligrape.com/blog/2010/07/22/tomcat-6-in-memory-session-replication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tomcat 6 Session Persistence through JDBCStore</title>
		<link>http://www.intelligrape.com/blog/2010/07/21/tomcat-6-session-persistence-through-jdbcstore/</link>
		<comments>http://www.intelligrape.com/blog/2010/07/21/tomcat-6-session-persistence-through-jdbcstore/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 12:49:22 +0000</pubDate>
		<dc:creator>Abhishek Tejpaul</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[HTTP session]]></category>
		<category><![CDATA[JDBCStore]]></category>
		<category><![CDATA[session persistence]]></category>
		<category><![CDATA[tomcast 6]]></category>
		<category><![CDATA[tomcat]]></category>

		<guid isPermaLink="false">http://www.intelligrape.com/blog/?p=1350</guid>
		<description><![CDATA[In one of our recent projects, we needed to save the HTTP session in the database.
This blog refers the Apache documentation as found here: http://tomcat.apache.org/tomcat-6.0-doc/config/manager.html
These are the following steps that need to be followed:
Step 1: Create a database named tomcat (as shown in our example in Step 3 below) or any other name as specified [...]]]></description>
			<content:encoded><![CDATA[<p>In one of our recent projects, we needed to save the HTTP session in the database.<br />
This blog refers the Apache documentation as found here: <a href="http://tomcat.apache.org/tomcat-6.0-doc/config/manager.html" target="_blank">http://tomcat.apache.org/tomcat-6.0-doc/config/manager.html</a></p>
<p>These are the following steps that need to be followed:</p>
<p>Step 1: Create a database named <strong>tomcat</strong> (as shown in our example in Step 3 below) or any other name as specified in the <strong>&#8216;connectionURL&#8217;</strong> attribute of the  &lt;Store&gt; element.</p>
<p>Step 2: Create the following table in the newly created database:</p>
<blockquote>
<pre>create table sessions (
session_id     varchar(100) not null primary key,
valid_session  char(1) not null,
max_inactive   int not null,
last_access    bigint not null,
app_name       varchar(255),
session_data   mediumblob,
KEY kapp_name(app_name)
);
</pre>
</blockquote>
<p>Step 3: Copy the <strong>context.xml</strong> file available at the global level at this location: <strong>&lt;TOMCAT_HOME&gt;/conf</strong>  to your application&#8217;s <strong>META-INF</strong> folder and replace the  &lt;Manager&gt; element with the following:</p>
<blockquote>

<div class="wp_syntax"><div class="code"><pre class="groovy"><span style="color: #66cc66;">&lt;</span>Manager className<span style="color: #66cc66;">=</span><span style="color: #ff0000;">'org.apache.catalina.session.PersistentManager'</span>
 saveOnRestart<span style="color: #66cc66;">=</span><span style="color: #ff0000;">'false'</span> minIdelSwap<span style="color: #66cc66;">=</span><span style="color: #ff0000;">'0'</span> maxIdleSwap<span style="color: #66cc66;">=</span><span style="color: #ff0000;">'0'</span>  maxIdleBackup<span style="color: #66cc66;">=</span><span style="color: #ff0000;">'1'</span><span style="color: #66cc66;">&gt;</span> 
<span style="color: #66cc66;">&lt;</span>Store className<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;org.apache.catalina.session.JDBCStore&quot;</span> 
driverName<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;com.mysql.jdbc.Driver&quot;</span>
connectionURL<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;jdbc:mysql://localhost/tomcat?user=username&amp;amp;password=password&quot;</span> 
sessionTable<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;sessions&quot;</span> 
sessionIdCol<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;session_id&quot;</span>
sessionDataCol<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;session_data&quot;</span>
sessionValidCol<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;valid_session&quot;</span> 
sessionMaxInactiveCol<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;max_inactive&quot;</span>
sessionLastAccessedCol<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;last_access&quot;</span>
sessionAppCol<span style="color: #66cc66;">=</span><span style="color: #ff0000;">'app_name'</span> /<span style="color: #66cc66;">&gt;</span>
 <span style="color: #66cc66;">&lt;</span>/Manager<span style="color: #66cc66;">&gt;</span></pre></div></div>

</blockquote>
<p>If these settings are placed in the &#8216;<strong>&lt;TOMCAT_HOME&gt;/conf/context.xml</strong>&#8216;, it will have a global effect on all the applications running on the server. For an application specific setting, you can place a newly created &#8220;context.xml&#8221; file in the <strong>&lt;APP_HOME&gt;/META-INF </strong>sub-folder inside the <strong>webapps</strong> folder.<br />
Please note that attributes used in the <strong>&lt;Store&gt;</strong> element make use of the table columns as created in the database in Step 2.</p>
<p>Step 4: Set the following system properties named &#8211; &#8216;<strong>org.apache.catalina.session.StandardSession.ACTIVITY_CHECK</strong>&#8216; to &#8216;<strong>true</strong>&#8216;.<br />
For further information on this, read the &#8216;Persistent Manager Implementation&#8217; section at this link : <a href="http://tomcat.apache.org/tomcat-6.0-doc/config/manager.html" target="_blank">http://tomcat.apache.org/tomcat-6.0-doc/config/manager.html</a></p>
<p>Step 5: Make sure you have placed the MySql jar in the <strong>&lt;TOMCAT_HOME&gt;/lib </strong>folder.</p>
<p>Now you can try to hit the application&#8217;s URL and check the database table to see the newly persisted session. Please note that it takes around 60 seconds to see the stored session in the database so you might have to wait a bit. You can have multiple instances of tomcat running your application pointing to the same database and can share this persisted session in case any of the tomcat instance crashes.</p>
<p>Cheers!!!</p>
<p>Abhishek &amp; Imran</p>
<p>abhishek@intelligrape.com | imran@intelligrape.com</p>
<p>[Intelligrape Software Pvt. Ltd.]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelligrape.com/blog/2010/07/21/tomcat-6-session-persistence-through-jdbcstore/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Apache-Tomcat integration on Ubuntu server</title>
		<link>http://www.intelligrape.com/blog/2008/02/13/apache-tomcat-integration-on-ubuntu-server/</link>
		<comments>http://www.intelligrape.com/blog/2008/02/13/apache-tomcat-integration-on-ubuntu-server/#comments</comments>
		<pubDate>Tue, 12 Feb 2008 20:07:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[tomcat]]></category>

		<guid isPermaLink="false">http://www.intelligrape.com/blog/?p=7</guid>
		<description><![CDATA[Follow the steps mentioned below to integrate Apache with Tomcat on an Ubuntu system. The steps assume that Apache and Tomcat are already installed and working fine independently.

Install Apache module for tomcat

sudo apt-get install libapache2-mod-jk

Create a file by the name &#8220;worker.properties&#8221; in /etc/apache2 directory. Sample worker.properties file below

workers.tomcat_home=/opt/servers/tomcat5.5
workers.java_home=/opt/java/jdk1.5
ps=/
worker.list=worker1
worker.default.port=8009
worker.default.host=localhost
worker.default.type=ajp13
worker.default.lbfactor=1


Add the following line to your site configuration [...]]]></description>
			<content:encoded><![CDATA[<p>Follow the steps mentioned below to integrate Apache with Tomcat on an Ubuntu system. The steps assume that Apache and Tomcat are already installed and working fine independently.</p>
<ul>
<li>Install Apache module for tomcat</li>
</ul>
<blockquote><p><code>sudo apt-get install libapache2-mod-jk</code></p></blockquote>
<ul>
<li>Create a file by the name &#8220;worker.properties&#8221; in /etc/apache2 directory. Sample worker.properties file below</li>
</ul>
<blockquote><p><code>workers.tomcat_home=/opt/servers/tomcat5.5<br />
workers.java_home=/opt/java/jdk1.5<br />
ps=/<br />
worker.list=worker1<br />
worker.default.port=8009<br />
worker.default.host=localhost<br />
worker.default.type=ajp13<br />
worker.default.lbfactor=1<br />
</code></p></blockquote>
<ul>
<li>Add the following line to your site configuration file (/etc/apache2/sites-available/dellServer)</li>
</ul>
<blockquote><p><code>jkMount /* worker1<br />
</code></p></blockquote>
<ul>
<li>Add the following lines to the end of your /etc/apache2/apache2.conf file</li>
</ul>
<blockquote><p><code>LoadModule jk_module /usr/lib/apache2/modules/mod_jk.so<br />
# Where to find workers.properties<br />
JkWorkersFile /etc/apache2/workers.properties<br />
# Where to put jk logs<br />
JkLogFile /tmp/mod_jk.log<br />
# Set the jk log level [debug/error/info]<br />
JkLogLevel info<br />
# Select the log format<br />
JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "<br />
# JkOptions indicate to send SSL KEY SIZE,<br />
JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories<br />
# JkRequestLogFormat set the request format<br />
JkRequestLogFormat "%w %V %T"<br />
</code></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.intelligrape.com/blog/2008/02/13/apache-tomcat-integration-on-ubuntu-server/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>

