RE: Tomcat not seeing servlet

2010-02-14 Thread David Short
Thank you Juha. The " works nicely. -Original Message- From: Juha Laiho [mailto:juha.la...@iki.fi] Sent: Sunday, February 14, 2010 8:49 AM To: users@tomcat.apache.org Subject: Re: Tomcat not seeing servlet On 02/14/2010 06:21 PM, David Short wrote: > "./AuthLogin" and

RE: Tomcat not seeing servlet

2010-02-14 Thread David Short
] Sent: Sunday, February 14, 2010 5:53 AM To: Tomcat Users List Subject: Re: Tomcat not seeing servlet 2010/2/14 David Short : >     > >        AuthLoginServlet > >        /AuthLogin > >     The above is correct. > Login.jsp snippet: > Try this instead: or this

Tomcat not seeing servlet

2010-02-13 Thread David Short
Hello, I'm having a problem with Tomcat no seeing my servlet. I have the servlet defined and mapped in my web.xml file. I've been Googling this for hours and every example I find instructs to use the following setup. Web.xml snippet: AuthLoginServlet servlets.Au

RE: Many Java Processes

2008-03-13 Thread David Short
Don't know if this applies here or not but, I got this once when my ORACLE_HOME wasn't set when using Jserv (wrapper.env=) with the Apache web server. -Original Message- From: Stephen Nelson-Smith [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2008 3:18 AM To: Tomcat Users List Sub

RE: Strange MySQL-Behaviour with JDBC-Realm

2007-06-04 Thread David Short
You may want to try it with explicit values to see if that makes a difference. I know NetBeans (different subject) has a problem when the port number is specified and is other that 3306 (default). Just an idea. -Original Message- From: Gregor Schneider [mailto:[EMAIL PROTECTED] Sent: M

RE: Strange MySQL-Behaviour with JDBC-Realm

2007-06-04 Thread David Short
Shouldn't your connection URL look something like this: jdbc:mysql//db:3306/apacheSSO instead of jdbc:mysql://db/apacheSSO? Not sure if this means anything, since you say it's already working... It just looks strange. -Original Message- From: Gregor Schneider [mailto:[EMAIL PROTECTED] S

RE: Configuring a DataSourceRealm

2007-05-29 Thread David Short
ice(CoyoteAdapter.java:148) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869) at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processC onnection(Http11BaseProtocol.java:664) at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpE

RE: Configuring a DataSourceRealm

2007-05-29 Thread David Short
In your code where you reference JNDI "jdbc", reference "jdbc/oaso" instead. -Original Message- From: Paulo Vivacqua [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 29, 2007 8:37 AM To: Tomcat Users List Subject: Re: Configuring a DataSourceRealm Hello chris, Thanks again for the help.I w

RE: Tomcat Connection pool

2007-05-29 Thread David Short
In your code where you reference the JNDI name "jdbc", reference "jdbc/orcl" instead. -Original Message- From: Ligade, Shailesh (Contr) (Mission Systems) [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 29, 2007 5:16 AM To: Tomcat Users List Subject: Tomcat Connection pool Greetings, I am

RE: Re: hi,wired problem? add 0 into alist but get 1 as a result!

2007-05-22 Thread David Short
Do a clean and build in your IDE. Run the test case in the IDE if possible. -Original Message- From: David Delbecq [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 22, 2007 2:35 AM To: Tomcat Users List Subject: [Norton AntiSpam] Re: hi,wired problem? add 0 into alist but get 1 as a result!

RE: hi,wired problem? add 0 into alist but get 1 as a result!

2007-05-21 Thread David Short
Yes. It declares that the List is going to hold integers. See http://www.onjava.com/lpt/a/6014. -Original Message- From: Leon Rosenberg [mailto:[EMAIL PROTECTED] Sent: Monday, May 21, 2007 1:10 PM To: Tomcat Users List Subject: Re: hi,wired problem? add 0 into alist but get 1 as a resu

RE: hi,wired problem? add 0 into alist but get 1 as a result!

2007-05-21 Thread David Short
Try creating your List like this and see what happens. List alist =new ArrayList(); -Original Message- From: Peter [mailto:[EMAIL PROTECTED] Sent: Monday, May 21, 2007 2:29 AM To: Tomcat Users List Subject: Re: hi,wired problem? add 0 into alist but get 1 as a result! thanks i am sure

RE: hi,wired problem? add 0 into alist but get 1 as a result!

2007-05-21 Thread David Short
Try creating your List like this and see what happens. List alist =new ArrayList(); -Original Message- From: Peter [mailto:[EMAIL PROTECTED] Sent: Monday, May 21, 2007 2:29 AM To: Tomcat Users List Subject: Re: hi,wired problem? add 0 into alist but get 1 as a result! thanks i am sure

RE: Tomcat and mod_jk

2007-05-13 Thread David Short
e the 8009 connector look like the 8080 connector. So I guess if you are using port 8084 for directly accessing your tomcat you would want to make the 8009 connector look like the 8084 connector David Short wrote: > > I believe this topic, or something similar, has been covered befo

Tomcat and mod_jk

2007-05-12 Thread David Short
I believe this topic, or something similar, has been covered before, so I apologize in advance. I'm having an issue with Tomcat consuming 100% CPU when called from Apache via ajp13. If I run my .jsp and servlet files through Tomcat directly (port 8084) all is well. However, if Apache redirects m

RE: Msql Connector/J

2007-05-09 Thread David Short
Unzip the connector and place the .jar file in the common\lib directory or in the webapps\**appname**\WEB-INF\lib directory. -Original Message- From: Massimiliano PASQUALONI [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 09, 2007 9:00 AM To: users@tomcat.apache.org Subject: Msql Connecto

RE: JavaMail, NetBeans and Tomcat 5.5.23

2007-05-08 Thread David Short
this time and I'm hesitant... -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 08, 2007 9:45 PM To: Tomcat Users List Subject: Re: JavaMail, NetBeans and Tomcat 5.5.23 On 5/8/07, David Short <[EMAIL PROTECTED]> wrote: > Has anyone setup

JavaMail, NetBeans and Tomcat 5.5.23

2007-05-08 Thread David Short
Has anyone setup JavaMail in NetBeans 5.5 with Tomcat 5.5.23? I'm trying to register the NetBeans Server Resource and it won't let me and tells me to set to Sun's Java System Application Server. Any ideas, suggestions, steps or tutorial available?

RE: Tomcat 5.5.23 and NetBeans 5.5

2007-04-26 Thread David Short
Nothing running on 8080... -Original Message- From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: Thursday, April 26, 2007 11:54 AM To: Tomcat Users List Subject: RE: Tomcat 5.5.23 and NetBeans 5.5 > From: David Short [mailto:[EMAIL PROTECTED] > Subject: RE: Tomcat 5.5.

RE: Tomcat 5.5.23 and NetBeans 5.5

2007-04-26 Thread David Short
ial information intended only for the person(s) to whom this email message is addressed. If you have received this email message in error, please notify the sender immediately by telephone or email and destroy the original message without making a copy. Thank you. - Original Message ----- Fro

Tomcat 5.5.23 and NetBeans 5.5

2007-04-26 Thread David Short
I've registered Tomcat 5.5.23 per the NetBeans 5.5 instructions. When I try to start Tomcat from within the NetBeans IDE, Tomcat refuses to start. The IDE displayed and actual Tomcat log files look normal, but the IDE hangs and eventually times out. I've removed and added Tomcat back in the IDE

RE: Tomcat UserDB in MySQL

2007-04-24 Thread David Short
Add a realm under the section. You'll need to copy the correct MySQL JDBC driver (http://dev.mysql.com/downloads/connector/j/5.0.html) to the tomcat_home\common\lib directory. Replace the "test" in localhost:3306/test with you database name. I've got it running on Tomcat 5.5.23 and MySQL 5.1.

RE: Administration Tomcat

2007-04-20 Thread David Short
I just got it to work. Here's what you need to do: 1) Unzip the file to a temporary directory (temp_dir). 2) Copy the %temp_dir%\conf\catalina\localhost\admin.xml file to %tomcat_home%\conf\Catalina\localhost directory. 3) Copy the %temp_dir%\server\webapps\admin directory to the %tomcat_home%\

RE: IDE

2007-04-17 Thread David Short
(5.0.17 for MacOSX). > Deplyoment is very easy. > > I don't know how to pull out this version with a more recent one 5.0.20 > ... > > Any ideas? > > TIA > On 6 avr. 07, at 02:47, David Short wrote: > >> I'm sure this question has been asked many tim

IDE

2007-04-05 Thread David Short
I'm sure this question has been asked many times. So, I apologize in advance. Can anyone recommend a freeware Java/JSP/JSF IDE that is compatible with Apache and Tomcat? Thanks in advance. Dave

RE: BOOBIES!

2006-07-23 Thread David Short
Please everyone, drop this!!! I don't know about you, but I get far too many emails as it is. Just use this forum as intended and keep the superfluous emails out. Charles, if you're not the original poster, then you shouldn't have jumped in to the original posters defense and hence labeled a low