Re: Issue in connecting to tomcat via Apache

2008-08-31 Thread Vasanth Kumar ravi
Thanks Rainer. On Fri, Aug 29, 2008 at 6:16 PM, Rainer Jung <[EMAIL PROTECTED]>wrote: > Vasanth Kumar ravi schrieb: > > Rainer, > > I was able to resolve the issue...and the root cause was simple... > > it was my mistake... > > in the conf file I had mentioned /examples/* worker1 > > I was tryin

Re: Issue in connecting to tomcat via Apache

2008-08-29 Thread Rainer Jung
Vasanth Kumar ravi schrieb: > Rainer, > I was able to resolve the issue...and the root cause was simple... > it was my mistake... > in the conf file I had mentioned /examples/* worker1 > I was trying to access the link as http://localhost/examples which is > supposed to be http://localhost/examples

Re: Issue in connecting to tomcat via Apache

2008-08-29 Thread Vasanth Kumar ravi
Rainer, I was able to resolve the issue...and the root cause was simple... it was my mistake... in the conf file I had mentioned /examples/* worker1 I was trying to access the link as http://localhost/examples which is supposed to be http://localhost/examples/ Cos of the / , I was not able to acces

Re: Issue in connecting to tomcat via Apache

2008-08-29 Thread Rainer Jung
Without any JkMount nothing will be sent to Tomcat. You need to keep e.g. JkMount /examples/* worker1 in you configuration. If you are using a virtual host in Apache, the JkMount must be inside the virtual host. Your mod_jk log file indicates, that during that test you didn't have any JkMount a

Re: Issue in connecting to tomcat via Apache

2008-08-28 Thread Vasanth Kumar ravi
sion is of a confidential nature and Sender >> does not endorse distribution to any party other than intended recipient. >> Sender does not necessarily endorse content contained within this >> transmission. >> >> >> > Date: Thu, 28 Aug 2008 21:34:07 -0400 >

Re: Issue in connecting to tomcat via Apache

2008-08-28 Thread Vasanth Kumar ravi
:34:07 -0400 > > From: [EMAIL PROTECTED] > > To: users@tomcat.apache.org > > Subject: Re: Issue in connecting to tomcat via Apache > > > > You don't specify exactly what you mean by "it fails", but assuming > > you're saying that requests to Apa

RE: Issue in connecting to tomcat via Apache

2008-08-28 Thread Martin Gainty
Sender does not endorse distribution to any party other than intended recipient. Sender does not necessarily endorse content contained within this transmission. > Date: Thu, 28 Aug 2008 21:34:07 -0400 > From: [EMAIL PROTECTED] > To: users@tomcat.apache.org > Subject: Re: Issue in c

Re: Issue in connecting to tomcat via Apache

2008-08-28 Thread Vasanth Kumar ravi
Hi Larry, Thanks for the headsup. Well I tried using the commented line earlier but it failed. So I tried again by commenting out the JMount parameter. I was trying to access the URL : http://localhost/examples with a JKMount details as follows.. JkMount /examples/* worker1. It did not redirect

Re: Issue in connecting to tomcat via Apache

2008-08-28 Thread Larry J Prikockis
You don't specify exactly what you mean by "it fails", but assuming you're saying that requests to Apache aren't getting passed along to Tomcat, your answer is right here: (from httpd.conf) # Send everything for context /examples to worker named worker1 (ajp13) #JkMount /examples/* worker1 if