Re: Apache mod_jk and Tomcat not working correctly

2008-10-27 Thread Wayne Bragg
called "dwr", so it returns the error you are seeing in the log. By doing what Rainer is recommending : JkMount /dwr-examples/* workername and then "un-mounting" selected parts of that, like JkUnMount /dwr-examples/*.html workername ... you avoid the above, because your call to

Re: Apache mod_jk and Tomcat not working correctly

2008-10-26 Thread Wayne Bragg
ciBDz"] Thanks alot for the help, your masters! - Original Message - From: "Rainer Jung" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Monday, October 27, 2008 12:07 AM Subject: Re: Apache mod_jk and Tomcat not working correctly Wayne Bragg s

WARNING: Servlet.service() for servlet php threw exception

2008-10-26 Thread Wayne Bragg
my setup: WinXP Home Wed-Dev install of: Apache/2.2.3 (Win32) Tomcat 5 PHP 5.2.0 As a work around to another thread, (mod_tk connector), I'm trying to setup native php on tomcat. I installed all the pieces according to http://the-double-0-project.net/blog/?p=126

Re: Apache mod_jk and Tomcat not working correctly

2008-10-26 Thread Wayne Bragg
mples/(.*\.(html?|jpg|php))$ /www/tomcat5/webapps/dwr-examples/$1 (I put html?|jog|php .. because I don't remember how to say "not .jsp") Wayne Bragg wrote: I guess I need to add, going through http port 80 works with no errors for everything except .jsp to tomcat - Origina

Re: Apache mod_jk and Tomcat not working correctly

2008-10-26 Thread Wayne Bragg
], [org.apache.webapp.balancer.rules.AcceptEverythingRule: Redirect URL: http://jakarta.apache.org]] Apologies to the hijacked thread! Thx - Original Message - From: "Wayne Bragg" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Sunday, October 26, 2008 5:48 PM

Re: Tomcat Server .pac Script configuration for outgoing connection.

2008-10-26 Thread Wayne Bragg
I guess you lost me with if you want a working solution you'll have to bypass the admin's configuration and try it with a 'clean' tomcat install what will that do for me? I could get the application to work on tomcat alone with the native php setup on tomcat, but I have not been able to get

Re: Tomcat Server .pac Script configuration for outgoing connection.

2008-10-26 Thread Wayne Bragg
Can anyone tell me where to find the rule causing this problem? INFO: org.apache.webapp.balancer.BalancerFilter: init(): ruleChain: [org.apache.webapp.balancer.RuleChain: [org.apache.webapp.balancer.rules.URLStringMatchRule: Target string: News / Redirect URL: http://www.cnn.com], [org.apache

Re: Apache mod_jk and Tomcat not working correctly

2008-10-26 Thread Wayne Bragg
I guess I need to add, going through http port 80 works with no errors for everything except .jsp to tomcat - Original Message - From: "Martin Gainty" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Sunday, October 26, 2008 5:41 PM Subject: RE: Apache mod_jk and Tomcat not working c

Re: Apache mod_jk and Tomcat not working correctly

2008-10-26 Thread Wayne Bragg
Confirmed! - Original Message - From: "Martin Gainty" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Sunday, October 26, 2008 5:41 PM Subject: RE: Apache mod_jk and Tomcat not working correctly Please confirm this parameter in $APACHE_HOME/conf/httpd.conf Listen 80 Martin _

Apache mod_jk and Tomcat not working correctly

2008-10-26 Thread Wayne Bragg
my setup: WinXP Home Wed-Dev install of: Apache/2.2.3 (Win32) Tomcat 5 PHP 5.2.0 I have mod_jk connector set up the following way according to instructions: Alias /dwr-examples "/www/tomcat5/webapps/dwr-examples/" Options Indexes FollowSymLinks AllowOverride None

Re: install DBCP and mm.mysql 2.0.14 (JDBC Driver) and test app, get class compile error.

2007-03-05 Thread Wayne Bragg
ompile error. The tag in your context config changes and the tag is removed as in In a side note, if you update your mysql driver, the new class name is com.mysql.jdbc.Driver and you should remove ?autoReconnect=true from the database url. --David Wayne Bragg wrote: What ver

Re: install DBCP and mm.mysql 2.0.14 (JDBC Driver) and test app, get class compile error.

2007-03-05 Thread Wayne Bragg
d HOW? Because I am now getting - Results Foo Not Connected Bar -1 Wayne - Original Message - From: "Wayne Bragg" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Monday, March 05, 2007 11:32 AM Subject: Re: install DBCP and mm.mysql 2.0.14 (JDBC Driver) a

Re: install DBCP and mm.mysql 2.0.14 (JDBC Driver) and test app, get class compile error.

2007-03-05 Thread Wayne Bragg
d HOW? Because I am now getting - - Original Message - From: "Wayne Bragg" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Monday, March 05, 2007 11:46 AM Subject: Re: install DBCP and mm.mysql 2.0.14 (JDBC Driver) and test app, get class compile erro

Re: Problems connecting

2007-03-05 Thread Wayne Bragg
For what it's worth. I wouldn't be so quick, did he ever say what error page he was getting from outside? This happened to me and it was because I wasn't handing off the NEW app code to Tomcat from httpd jk connector ie: JkMount /what-ever-your-app/*.jsp ajp13worker1. Depends on how he set up To

Re: install DBCP and mm.mysql 2.0.14 (JDBC Driver) and test app, get class compile error.

2007-03-05 Thread Wayne Bragg
to review the tomcat docs regarding JNDI and JDBC resources -- how to configure, etc., ... --David Wayne Bragg wrote: Sorry about the previous premature post. This is the full question/problem I am trying to install DBCP and mm.mysql 2.0.14 (JDBC Driver) and a test app to see if it w

Re: install DBCP and mm.mysql 2.0.14 (JDBC Driver) and test app, get class compile error.

2007-03-05 Thread Wayne Bragg
a to DbTest.class and place it in WEB-INF/classes/foo or in a .jar archive in WEB-INF/lib. There's a start. You might also want to review the tomcat docs regarding JNDI and JDBC resources -- how to configure, etc., ... --David Wayne Bragg wrote: Sorry about the previous premature post.

install DBCP and mm.mysql 2.0.14 (JDBC Driver) and test app, get class compile error.

2007-03-04 Thread Wayne Bragg
Sorry about the previous premature post. This is the full question/problem I am trying to install DBCP and mm.mysql 2.0.14 (JDBC Driver) and a test app to see if it works. I'm not sure I have all the correct steps and configuration, in other words I don't know what I am doing.. Here is w

install DBCP and mm.mysql 2.0.14 (JDBC Driver) and a test app, getting class compile error

2007-03-04 Thread Wayne Bragg
I am trying to install DBCP and mm.mysql 2.0.14 (JDBC Driver) and a test app to see if it works. I'm not sure I have all the correct steps and configuration, in other words I don't know what I am doing.. Here is what I know and my setup for this test example that I keep getting a class compile e

Re: DWR using WAN vs LAN

2007-03-04 Thread Wayne Bragg
ders over the higher level config and common folders? As far as the - Original Message - From: "Wayne Bragg" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Saturday, March 03, 2007 10:00 PM Subject: Re: DWR using WAN vs LAN After all this, and with a

Re: DWR using WAN vs LAN

2007-03-03 Thread Wayne Bragg
apologize for not asking these questions this way from the start. - Original Message - From: "Wayne Bragg" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Saturday, March 03, 2007 6:13 PM Subject: Re: DWR using WAN vs LAN You may want to limit your question to one topic a

Re: DWR using WAN vs LAN

2007-03-03 Thread Wayne Bragg
mcat is configured to run on 8080 by default you can change that to 80 by editing the server.xml file. All http traffic that doesn't specify a port automatically go to 80. To access your computer from the Internet you'll need to first open the port on your router or remove the com

DWR using WAN vs LAN

2007-03-03 Thread Wayne Bragg
Chuck, I can't begin to thank you enough for you reply. I know some of these questions are borderline inappropriate for this mailing-list subject but they, at least loosely, apply. My newbism is defiantly showing. First, the idiot I am I didn't realize port 80 was 80 and 8080 was 8080. I though