Re: HOWTO: install a Tomcat web application on Fedora 7 [was: ...]

2008-02-28 Thread Chris Baty
My own 2 cents; I'm a Debian guy and I spent at least a month trying to get Tomcat to run the way I wanted it. It so damn easy to do an apt-get install tomcat5.5 (or rpm), look at http://localhost:8180/ and see something working. But I didn't get predictable behavior until I install Tomcat

Re: Only see html/code

2008-02-02 Thread Chris Baty
-webapps/cwrecyclers and the first JkMount is fine. Remove the second one in either case. --David Chris Baty wrote: Hi Guys, I'm running Tomcat 5.5 and Apache 2, with Tomcat connector (Kind of a newbie). I got my Tomcat working fine at /usr/share/tomcat5.5-webapps/ROOT/cwrecyclers. When I

Re: Only see html/code

2008-01-21 Thread Chris Baty
@tomcat.apache.org Sent: Sunday, January 20, 2008 10:06:13 AM Subject: Re: Only see html/code Hi Chris, Chris Baty schrieb: Hi Guys, I'm running Tomcat 5.5 and Apache 2, with Tomcat connector (Kind of a newbie). I got my Tomcat working fine at /usr/share/tomcat5.5-webapps/ROOT/cwrecyclers. When I

Re: Only see html/code

2008-01-21 Thread Chris Baty
Sent: Monday, January 21, 2008 10:42:28 AM Subject: Re: Only see html/code If you think that your requests do net get forwarded to Tomcat, set JkLogLevel to debug and do a single request, that should go to Tomcat. Post the contents of the jk log then. Regards, Rainer Chris Baty wrote: Thanks

Only see html/code

2008-01-20 Thread Chris Baty
Hi Guys, I'm running Tomcat 5.5 and Apache 2, with Tomcat connector (Kind of a newbie). I got my Tomcat working fine at /usr/share/tomcat5.5-webapps/ROOT/cwrecyclers. When I point the browser (locally) at localhost:8180/cwrecyclers/ I see exactly what I expect. But when I look remotely also

Running Tomcat as Standalone in linux

2008-01-05 Thread Chris Baty
Hi guys, I want to serve a site with few graphics so I decided to use Tomcat 5.5 as my server. But I'm having difficulty getting it to run on port 80. I read http://www.ibm.com/developerworks/java/library/l-secjav.html and decided to try xinetd. I added this to /etc/xinetd/: # Redirects

Re: Running Tomcat as Standalone in linux

2008-01-05 Thread Chris Baty
Subject: Re: Running Tomcat as Standalone in linux Check out your log see if there is any error info. On Jan 5, 2008 11:29 PM, Chris Baty [EMAIL PROTECTED] wrote: Hi guys, I want to serve a site with few graphics so I decided to use Tomcat 5.5 as my server. But I'm having difficulty getting

Tomcat5.5 postgresql, security oh my

2007-12-03 Thread Chris Baty
Hi all, I'm trying to get Tomcat5.5 working with Poestgresql. I know I got everything configured right because if I turn Tomcat security off, in / etc/default/tomcat, everything works fine. My site directory is at /usr/share/tomcat5.5-webapps/ROOT/myapp. I want security on so this is

Re: Tomcat5.5 postgresql, security oh my

2007-12-03 Thread Chris Baty
, 2007 8:54:56 AM Subject: RE: Tomcat5.5 postgresql, security oh my Exactly which Tomcat version? What doesn't work? What error do you get, under what circumstances? - Peter -Original Message- From: Chris Baty [mailto:[EMAIL PROTECTED] Sent: 03 December 2007 13:37

Basic Toimcat5.5 admin question

2007-09-21 Thread Chris Baty
Hi guys, I finally got Tomcat5.5 going on Etch AMD and I start studying the JSP developers guide but I get stuck in the beginning. The book says to create a new directory under ROOT but I don't have permission in my default account. The last install I did a chgrp

Re: Basic Toimcat5.5 admin question

2007-09-21 Thread Chris Baty
, Chris Baty [EMAIL PROTECTED] wrote: The book says to create a new directory under ROOT but I don't have permission in my default account. The last install I did a chgrp /user/share/tomcat5.5-webapps/ROOT www-data ... but I screwed the package up so bad that I re-installed

Re: Issue with psql driver

2007-09-06 Thread Chris Baty
) at org.postgresql.Driver.makeConnection(Driver.java:382) at org.postgresql.Driver.connect(Driver.java:260) ... 45 more Thanks. Chris --- Chris Baty [EMAIL PROTECTED] wrote: Hi David, The only trace that I can find is the Catalina log: Error occurred

Issue with psql driver

2007-09-05 Thread Chris Baty
Hi Guys, I'm trying to access psql from Tomcat5. I have the correct driver because my command-lind test program works fine. So I copied the driver into /usr/share/tomcat5/common/lib, like the documentation says. Then I kept getting Error occurred: org.postgresql.util.PSQLException:

Re: Issue with psql driver

2007-09-05 Thread Chris Baty
the problem. ---David Chris Baty wrote: Hi Guys, I'm trying to access psql from Tomcat5. I have the correct driver because my command-lind test program works fine. So I copied the driver into /usr/share/tomcat5/common/lib, like the documentation says. Then I kept getting Error occurred

Re: Issue with psql driver

2007-09-05 Thread Chris Baty
out in /var/tomcatt5/Catalina.date.log Chris --- David Smith [EMAIL PROTECTED] wrote: How do you log the event? Most logging frameworks support log.error( String message, Exception e ), which would provide the complete stack and root cause in the log file. --David Chris Baty wrote