Re: Arrrghhh how can i do it ?

2002-02-13 Thread David Smith
Did you run ./support/buildconf.sh before attempting to run ./configure? I don't clearly remember, but it seems the last time I built mod_webapp, configure didn't exist until after I ran buildconf.sh. --David On Wednesday 13 February 2002 09:44 am, you wrote: Hi all, Well i just decided to

Re: Arrrghhh how can i do it ?

2002-02-13 Thread David Smith
For those following the thread, my reply is at the bottom... On Wednesday 13 February 2002 10:52 am, you wrote: David Smith a écrit : Did you run ./support/buildconf.sh before attempting to run ./configure? I don't clearly remember, but it seems the last time I built mod_webapp

Re: how-to: rename .../servlet/....

2002-02-13 Thread David Smith
The default /servlet mapping is in $CATALINA_BASE/conf/web.xml. To override, just make a servlet mapping for your servlets in your apps local web.xml file. (Assuming TC 4 of couse) --David On Wednesday 13 February 2002 11:29 am, you wrote: All, How would I go about renaming the alias

Re: DBPool on Tomcat

2002-02-14 Thread David Smith
Cheer up Craig. I don't think I've ever asked a question on the list (although you've corrected me once or twice) and that's mainly because of your docs and user list replies. Thanks for all the effort you've put in to Tomcat and Struts!!. --David On Thursday 14 February 2002 12:29 pm, you

Re: Tomcat 4_0_2 ConnectException

2002-02-18 Thread David Smith
Typically an error like this would show in the catalina.out log file. I would suspect though that you are experiencing a seg fault in the jvm on startup. At the very minimum, if TC 4 is starting successfully, you should see a number of java threads in the output of 'ps -A'. --David On

Re: [INIMSS] How can I load a custom jar file for a particular web application. [a newbie question]

2002-02-19 Thread David Smith
It would be extremely helpful if we knew what version of Tomcat is running. If we're talking TC 4, then place it in WEB-INF/lib of your webapp and then restart the app. I believe that holds true for 3.3 as well (I'm more familiar with TC 4). For versions before 3.3, the classloader system

Re: Reposting [INIMSS] How can I load a custom jar file for a particular web application. [a newbie question]

2002-02-19 Thread David Smith
Well then the class structure would be placed in WEB-INF/classes where the classloader structure would find all your .class files. Then you would reference your classes on the import line as ClassA.ClassA1 for example. If you write them yourself, make sure each source .java file has a

Re: Starting Tomcat 4.0.2 with Apache 1.3.23 using J2SDK 1.3.1

2002-02-20 Thread David Smith
I'd say there's your problem. usage: java org.apache.(etc.) indicates something isn't right in how catalina.sh is calling java. I would check your variables like CATALINA_OPTS, CATALINA_HOME, CATALINA_BASE for typo's or errors. Provided you didn't edit startup.sh or catalina.sh,

Re: webapps directory required for Warp?

2002-02-27 Thread David Smith
One option I believe should work is to put the full path of the app in the WebAppDeploy directive. ex.: WebAppDeploy /var/www/webapp/myapp conn /myapp --David On Tuesday 26 February 2002 03:34 pm, you wrote: Warp. I have mod_webapp.so and libapr.dll in my Apache modules directory. I have

Re: Unable to compile class for JSP

2002-02-27 Thread David Smith
In fwLine.java (assuming you wrote the class), there needs to be a package line for the class at the top of the file something like: package com.mycompany.myproject.fwLine ; And this has to be reflected in the path under WEB-INF/classes to your fwLine.class file as in:

Re: Tomcat startup.bat does not work?

2002-03-05 Thread David Smith
But default out of the box Tomcat actually opens 3 ports. Did you change all of them?? Port 1 is the shutdown port 8005, Port 2 is the web service port 8080 (RPM: 8180), and Port 3 is the Warp connector (8008 I believe). Also try to determine what ports are in use by other services on your

Re: Tomcat 4 Realms and MySQL

2002-03-06 Thread David Smith
Just a note about the connection URL. MySQL requires an amperstand between the user and password parameters. So a correct URL (encoded for XML) will be: connectionURL=jdbc:mysql://localhost/tomcatusers?user=tetamp;password=test Hope it helps... --David On Tuesday 05 March 2002 02:17 pm,

Re: Tomcat Mysql

2002-03-06 Thread David Smith
I just posted to another thread on this eact problem issue. The example MySQL realm in server.xml is wrong. MySQL uses an amperstand character () between the user and password parameters in the URL. Here is the correct URL for making a connection to a MySQL database:

Re: Upgrade to JDK1.4 -- unable to compile JSPs

2002-03-07 Thread David Smith
I saw this issue with Cocoon 2. The cocoon.war file includes javac.jar in WEB-INF/lib which is not compatible with jdk 1.4. Something very similar might be happening here. Check the directories for a tools equivalent .jar file built for use with jdk1.3. Hope this helps... --David On

Re: XML output, I need help.

2002-03-13 Thread David Smith
This sounds like IE's old ignore the mime type issue. Does the requested URL end in .xml? If not, IE may not recognize it as an xml file even with correct mime typing. Just a thought. --David On Tuesday 12 March 2002 09:35 pm, you wrote: Hi, guys, I tried to write a XML format output

Re: Location of jdbc driver

2001-11-26 Thread David Smith
it can find the jar file. Should work after that. Hope this helps. --David Smith On Wednesday 21 November 2001 09:23 pm, you wrote: Hi ya, Let's share this with the others ;-), and I think this should be mentioned in the docs. Anyway, here how I do it, I place the *driver directory tree

Re: JSP compilation error.

2001-11-27 Thread David Smith
Have you taken a look at the .java file that's generated from the .jsp file? It's located in $CATALINA_BASE/work and should give you more insight into what's happening. --David On Monday 26 November 2001 11:08 am, you wrote: Hi there, Tomcat 4.0.1 on Solaris (SunOS 5.6), JDK 1.3.1, trying

Re: TC 4.0 newbie - servlet app won't run

2001-11-27 Thread David Smith
Have you taken a look at the global web.xml file? It's located in $CATALINA_BASE/conf and contains some default mappings. One of those I believe takes care of finding HelloWorldExample.class for the examples context. At any rate you might find it an interesting read as these settings are

Re: [repost] loading class files

2001-11-27 Thread David Smith
mystery. --David Smith I cannot find any place in the spec that says that JSPs, etc. cannot be under WEB-INF. I have seen many suggestions that this is a good place to put them to prevent direct access. In what way doesn't this provide proper operation. Frank Lawlor Athens Group, Inc

Re: [repost] loading class files

2001-11-27 Thread David Smith
correctly. JSPs, static content, and client-side applets should all be outside the WEB-INF folder for proper operation. This is defined in the spec and is required for all applications conforming to it. Hope this clears some mystery. --David Smith I cannot find any place in the spec

Re: PROBLEMS INSTALLING TOMCAT

2001-11-28 Thread David Smith
I don't particularly work with Tomcat on a Windows machine, but you might want to consider removing the ; at the end of the JAVA_HOME and TOMCAT_HOME environment variables. It may be causing problems in the startup.bat and shutdown.bat files. --David On Wednesday 28 November 2001 03:18 pm,

Re: Tomcat 4.0/JDBC driver configuration?

2001-11-29 Thread David Smith
Take a look at the JNDI howto in the TC 4 web site. It does a reasonably good job of describing how to set things up. For the location of classes12.jar, there are three place it could be placed: WEB-INF/lib of your web app for use by that app only $CATALINA_BASE/lib for use by all apps, but

Re: tomcat 4.0

2001-12-03 Thread David Smith
Just a note on the URL after you get the driver working: connectionURL=jdbc:mysql://localhost/authority?user=test;password=test The connection URL should have an amperstand encoded instead of a semicolon before password. It's unique to MySQL's JDBC driver and isn't done with any others that

Re: Turbine+mod_webapp problems with file upload (multipart data)

2001-12-03 Thread David Smith
This looks like a bug that was fixed in the nightlies for mod_webapp. You might want to download the source and build it for a better, more stable version. --David On Monday 03 December 2001 03:53 pm, you wrote: This weekend I installed mod_webapp and pointed it to Tomcat 4.0.1 and things

Re: Apache Tomcat 4.0.1

2001-12-04 Thread David Smith
Yes, mod_jk does work with TC 4.0.1. I would download the binary for TC 3.3 and use the mod_jk in that dist. The docs that come with TC 3.3 don't really apply to TC 4.0.1 though. Instead, check the server.xml in TC 4.0.1 for instructions around the entry for the AJP 13 connector. The

Re: Apache Tomcat 4.0.1

2001-12-04 Thread David Smith
! This is good to know. One thing to consider, is the the web_apps module uses the the warp connector, which is suppose to have better performance. I have not done any benchmarking, or read about any. I just going off of the documentation that I have read. David Smith wrote: Yes, mod_jk does work

Re: Apache Tomcat 4.0.1

2001-12-05 Thread David Smith
but it will not load? -Original Message- From: David Smith [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 04, 2001 3:19 PM To: Tomcat Users List Subject: Re: Apache Tomcat 4.0.1 I honestly don't know if mod_webapp has better performance. Mod_jk has been around longer has has more

Re: Filter-Tag Problems with TC 4.0.1

2001-12-06 Thread David Smith
You have to follow the exact order as specified in the DTD. The xml parser is picky on this point. Check the DTD and your web.xml file to make sure there aren't any elements before that should be after and so forth. --David On Wednesday 05 December 2001 05:53 pm, you wrote: Hi everyone,

Re: Cannot connect Servlet/JSP running in Tomcat to MySQL Database

2001-12-06 Thread David Smith
Is your Tomcat using the security manager?? That would explain the error message. If so, you'll have to allow access to the datasource in catalina.policy. Otherwise it should work. --David On Wednesday 05 December 2001 05:19 pm, you wrote: Hi, I am unable to connect a servlet or jsp

Re: ONE More Time! why does Tomcat 4 work this way

2001-12-07 Thread David Smith
The mod_webapp material found their might be fairly old. I haven't looked in a while, so I can't say with any certainty. I downloaded source for mod_webapp from the following page: http://nagoya.apache.org/~pier/snapshots/ It has nightly packages complete with all that's needed to build

Re: Setting up a DB

2001-12-07 Thread David Smith
Take a look at this how-to at the jakarta web site: http://jakarta.apache.org/tomcat/tomcat-4.0-doc/jndi-resources-howto.html --David On Friday 07 December 2001 07:50 am, you wrote: Hi All, I'm pretty new at using Tomcat and related Technologies, I have one hope fully small question. Where

Re: is it possible to access files not under webapps/ using mod_webapp

2001-12-17 Thread David Smith
If you have a recent build of mod_webapp, you should be able to specify the full path in the WebAppDeply directive. Pier added this after version 1.0, so you definitely need a recent build. Example: WebAppDeploy d:/data/tomcat/root conn /root (or whatever) --David On Monday 17 December

Re: loading jdbc driver

2002-01-11 Thread David Smith
Standalone jave works, but the servlet doesn't? Sounds like either the file isn't in the right place ( $CATALINA_BASE/common/lib, $CATALINA_BASE/lib, or WEB-INF/lib ) or it's named as a .zip instead of .jar. Tomcat only looks for .jar files (.zip files are ignored) in one of the above listed

Re: apache mod_auth and tomcat

2002-01-13 Thread David Smith
That depends on whether you are using mod_webapp or not. IMHO it would be better to simply comment out the connector that services port 8080 from server.xml. That way, AJP13 protocol for mod_jk is still available (if that's what you use). --David On Friday 11 January 2002 05:45 pm, you

Re: JDBC authentication configuration

2002-01-14 Thread David Smith
This may or may not be the full problem, but one glaring error is in the connectionURL of your server.xml file. It should read as follows. Note the URL for making a connection to a MySQL database uses an symbol before 'password' and in XML it has to be encoded. Hope this helps you out.

Re: Integrating TC 4.0 with Apache 1.3.12

2002-01-14 Thread David Smith
The WebAppConnection should point to the warp connection port 8008 by default (unless you've changed it in server.xml). Then when you link to a jsp from an html file, just use the second form of the url (minus the port no.). Apache will pick it up, see that it should be sent to Tomcat, and

Re: executing JSP with virtual hosts

2002-01-15 Thread David Smith
If the jsp source is showing, then the request is never going to Tomcat. Sounds to me like you have an alias in your httpd.conf to the directory of your app and Apache is serving out the files as static. Can you post the relevant parts of your httpd.conf? I'm specifically interested in

Re: Tomcat 4.0.1 Suse 7.2 Can't Get It To Work In Stand Alone Mode

2002-01-15 Thread David Smith
hmmm if you do a ps -a | grep java, do you get a list of java threads? That'll show that TC is actually working and not getting a seg fault on startup or something. Also netstat -tln should provide a list of open server ports for your machine and you should see some ports open [8005

Re: Tomcat 4.0.1 : What do these environmental variables mean?

2002-01-15 Thread David Smith
From what I understand, CATALINA_BASE was designed to allow for multiple instances of Tomcat 4 on one machine. Each instance would have a separate CATALINA_BASE directory containing a conf dir, server.xml, etc., ... CATALINA_HOME is the directory containing stuff like the bin directory and

Re: Tomcat 4.0.1 Suse 7.2 Can't Get It To Work In Stand Alone Mode

2002-01-15 Thread David Smith
: David have you got the mod-webbapp working under Mandrake? Dom -Original Message- From: David Smith [mailto:[EMAIL PROTECTED]] Sent: 15 January 2002 15:25 To: Tomcat Users List Subject: Re: Tomcat 4.0.1 Suse 7.2 Can't Get It To Work In Stand Alone Mode hmmm if you do a ps

Re: running tomcat under Mandrake

2002-01-15 Thread David Smith
Yup. I built mod_webapp from nightly snapshot (didn't use the excessively old version included with the TC binaries). There have been a lot of bug fixes and support for SSL was added in version 1.1. Why? Is it not working on your system? I would note if anyone on the list decides to build

Re: running tomcat under Mandrake

2002-01-15 Thread David Smith
- From: David Smith [mailto:[EMAIL PROTECTED]] Sent: 15 January 2002 17:02 To: Tomcat Users List Subject: Re: running tomcat under Mandrake Yup. I built mod_webapp from nightly snapshot (didn't use the excessively old version included with the TC binaries). There have been a lot of bug fixes

Re: tomcat or catalina?

2002-01-16 Thread David Smith
The difference is version. In Tomcat 4, CATALINA_HOME is the environment variable to set for where Tomcat lives. In Tomcat 3.x.x, TOMCAT_HOME is the environment variable for where Tomcat lives. I think it was done primarily as a migration feature so you could have both running and they

Re: Applet Problems

2002-01-17 Thread David Smith
Applets are downloaded by the browser, and as such have to be accessible to the client. Clients can not directly access anthing under WEB-INF per the servlet spec. So you'll have to find a place to put them outside WEB-INF or have a servlet of some kind serve them to the client (if

Re: ----TomcatApache running in different boxes

2002-01-17 Thread David Smith
I don't work with mod_jk much, but I think you just need a copy of the workers.properties file on your Apache server where mod_jk can find it and then modified to reflect the ip and port of Tomcat's server. Docs and other people can probably do a better job of getting you going, but this

Re: ----TomcatApache running in different boxes

2002-01-17 Thread David Smith
) very much by the suggestions. Marcelo - Original Message - From: David Smith [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, January 17, 2002 9:57 AM Subject: Re: TomcatApache running in different boxes I don't work with mod_jk much, but I think

Re: Strange behaviour; i don't understand...

2002-01-18 Thread David Smith
On the second question, a moderately new build of mod_webapp should be able to accept a full path for the location of an app. Example: WebAppDeploy /var/www/webapps/examples conn /examples --David On Friday 18 January 2002 06:04 am, you wrote: Hi All, Running - SOLARIS 8 - Apache 1.3.20

Re: Mod_webApp Configuration - Tomcat 4.01, Apache 1.3.22 (Darwin)

2002-01-21 Thread David Smith
Well if WebAppInfo works, then mod_webapp must be working (well... at least loading). I did notice you changed the name of your warp connection between WebAppConnection and the WebAppDeploy directives. It might be some kind if typo in the email, but if not you should start by changing that.

Re: startup and core dump

2002-01-21 Thread David Smith
I believe this one is well documented, but there is an issue with JDK 1.3.x and Linux where a stack set to unlimited will cause a seg fault. To fix, use 'ulimit -s 2048' in either startup.sh or catalina.sh. If this doesn't fix it, please post more info (OS dist, JDK version, exact error

Re: Unbuffered Output with Tomcat4 and Apache?

2002-01-21 Thread David Smith
Don't know on the first part, but the seg fault in the second part of your email is well known. Place 'ulimit -s 2048' in your startup.sh. The JDK has a known issue with Linux and detecting a stack space of 'unlimited'. For some reason it's more prevalent in Tomcat 4.0.1 than in any

Re: instructions for Apache webapp

2002-01-21 Thread David Smith
Ok... what do you mean 'can't connect'. Please be more specific. I have mod_webapp working on a Mandrake 8 i586 system. My mod_webapp was built from nightly snapshot and works without a problem. To the original poster -- Dean Hall: There are a couple of different ways to connect Tomcat and

Re: startup and core dump

2002-01-21 Thread David Smith
JDK 1.4? I haven't worked with that yet since last I checked it was still a beta release. As far as the ulimit... line goes, I was being literal (except for the quote marks :-). At least that's the command for the bash shell to limit stack space for executed commands. It may be different

Re: startup and core dump

2002-01-22 Thread David Smith
Sure -- I just upgraded my desktop system to Mandrake 8.1 and am sorting things out. I'll try to send it a little later this aftenoon. --David On Monday 21 January 2002 03:21 pm, you wrote: Thanks, David, Could I ask you to send me the script you use in startup.sh? That would be super.

Re: servlets work but JSPs not!

2002-01-24 Thread David Smith
set path=JAVA_HOME;C:\jdk1.1.8\ JDK 1.1.8?? Doesn't Tomcat 4 require a Java 2 JDK like 1.3.1? Just an observation. --David On Thursday 24 January 2002 07:50 am, you wrote: For Tomcat 4 (which is what this person is using - the stack trace mentions Catalina), the CLASSPATH environment

Re: servlets work but JSPs not!

2002-01-24 Thread David Smith
. about JDK 1.2 but i cannot reach a download... I think the same with you; the problem should be caused by JDK version mismatch.. does anybody know from where to download JDK 1.2 (or newer)? Zeynep -Original Message- From: David Smith [mailto:[EMAIL PROTECTED]] Sent: Thursday

Re: BLOB FROM JSP PAGE

2002-01-24 Thread David Smith
Have you thought of using a servlet mapped to the file you are working with (ie servlet mapping to *.jpg)? I haven't tried it, but in theory (this is how I would do it if I had to), the servlet would catch the request, access the info from the db and return the binary data. Since the client

Re: com.oreilly.servlet.MultipartRequest IO Error

2002-01-28 Thread David Smith
What's the platform. I've had good luck building it on a Mandrake 8 box. Some others appear to have problems stemming from which compiler and whether specific libraries were present. I can't recall all the specifics, but I'm sure if the list archives go back far enough you can find them.

Re: mod_jk.so + apache

2001-08-15 Thread David Smith
on a Mandrake 8 box, so individual OS and/or Apache install mileage may very. --David Smith On Tuesday 14 August 2001 09:09 pm, you wrote: My probleme: when I try to start apache: #apachectl start Starting httpd: Syntax error on line 774 of /etc/httpd/conf/httpd.conf: Invalid command

Re: Why and How Tomcat before Apache?

2001-08-17 Thread David Smith
That's an unsettling feeling. Never trust incoming form data, but if Tomcat is running as a less priveledged user, the potential damage from malformed form data is reduced. I personally would never run a web app as root just for the black hole of security issues dealing with the outside

Re: Help on my first Servlet JSP

2001-08-21 Thread David Smith
of MSN Explorer at http://explorer.msn.com/intl.asp --David Smith

Re: Can't view Jsp examples

2001-08-21 Thread David Smith
at the same port. --David Smith On Tuesday 21 August 2001 04:16 pm, you wrote: Yes. Me too. Do my PWS and Tomcat serve the same purpose? Did I not need to install Tomcat to view jsp pages? -Original Message- From: Rob S. [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 21, 2001 4:11 PM

Re: Permission Denied Error in Linux

2001-08-30 Thread David Smith
You need to set execute permission on your startup.sh and shutdown.sh. They are not set as executable by default. --David Smith On Thursday 30 August 2001 02:54 am, you wrote: Hi, I tried to install Tomcat 3.2 in Linux. But when I run shell bin/startup.sh I got a Permission Denied

Re: IE and downloading a binary file

2001-08-30 Thread David Smith
files, .doc for Word docs, .exe for executable files) --David Smith On Thursday 30 August 2001 01:06 pm, you wrote: Friend, if you ever find out, please let me know--I've been searching for a solution to this IE feature for over four years now!! I've fallen back on telling the user in my

Re: accessing servlets without a port number

2001-08-31 Thread David Smith
configure this. --David Smith On Friday 31 August 2001 01:04 pm, you wrote: Hello List, I'd like to access my servlets without using the port number, and I've seen a whole bunch of config files and directives and I was wondering if anyone could tell me exactly how its done, or point me to some

Re: mod_jk.so woes

2001-08-31 Thread David Smith
, it definitely was built with EAP. If you don't have SSL, well then it's still a maybe, maybe not. --David Smith On Friday 31 August 2001 02:30 pm, you wrote: I've been having problems for days compiling mod_jk.so. I would like to see if a pre-compiled one would work for me. Does someone have

Re: ipchains - apache - tomcat - Help!!!

2001-09-04 Thread David Smith
still works without a problem and I'm just not accepting any outside traffic from the net. Just my experience in the matter... indiviual mileage may very. --David Smith On Tuesday 04 September 2001 07:14 am, you wrote: Jean-Frederic, thanks alot for your answer (it's been fast as lightnin

Re: Destination Port for mod_jk

2001-09-14 Thread David Smith
supports this using the state match extension module, but you'll have to check the docs since I've never tried it. My thoughts on the subject -- anyone else? --David Smith On Wednesday 12 September 2001 05:32 pm, you wrote: Hello, I'm setting a pair of machines, one of which is running tomcat

Re: Spaces in TOMCAT_HOME

2001-09-14 Thread David Smith
might have ~2 if the letters before it match up with another file or folder name. --David Smith On Friday 14 September 2001 04:40 pm, you wrote: What's the 8.3 format for C:\Java Tools\ -Original Message- From: Bryan Lipscy [mailto:[EMAIL PROTECTED]] Sent: Friday, September 14, 2001 3

Re: what port should I use for mod_webapp

2001-09-25 Thread David Smith
to taking the default 80 when not defined. I'm not sure why, but then again, mod_webapp is still very new and is bound to be a little rough around the edges. That's my experience. --David Smith On Monday 24 September 2001 11:47 pm, you wrote: I managed to get Apache and Tomcat going tonight whew

Re: Unable to set CLASSPATH dynamically

2001-09-26 Thread David Smith
on the right. --David Smith On Wednesday 26 September 2001 09:34 am, you wrote: Just installed tomcat 3.2.3 on my Win95 PC. I set up JAVA_HOME, set path to JAVA_HOME\bin, and set TOMCAT_HOME to c:\jakarta\jakarta-tomcat-3.2.3. When I run startup.bat here is what I get#8230; #8230; Unable to set

Re: two tomcat-apache connections?

2001-09-27 Thread David Smith
the same connection. It's all described briefly, but effectively in the INSTALL.TXT file that comes with mod_webapp (the CVS source at least). --David Smith On Wednesday 26 September 2001 03:01 pm, you wrote: red hat linux 7.1, apache 1.3.20 with mod_webapp, jakarta-tomcat 4.0 the tomcat

Re: catalina.bat

2001-09-27 Thread David Smith
Have you tried a pause command in the catalina.bat? Place it right after the point where things die and it should keep the window open. Or you could checking the log file 'catalina.out' which should also have any errors from startup. --David Smith On Wednesday 26 September 2001 06:18 pm

Re: tomcat3.0-4.0 conversion problem with JSP's

2001-10-01 Thread David Smith
what's happening. --David Smith On Monday 01 October 2001 10:47 am, you wrote: Hello List! I'm having some difficulty in my conversion from Tomcat 3 to Tomcat 4. Although 3 has been stable, we've never been able to get multiple Vhosts running under a single JVM. Fortunately I have that working

Re: Using jsp / servlets for main web site?

2001-10-01 Thread David Smith
people working on that project and I haven't seen much of any posts from him in a while. Last I knew there were one or two major bugs still in need of resolution before 1.0 release. Good luck! --David Smith On Monday 01 October 2001 10:05 am, you wrote: I've been running apache for years

Re: Using jsp / servlets for main web site?

2001-10-01 Thread David Smith
Cocoon2 to something like /xml_test instead and try it out. If that works, then you're probably a lot closer to the answer. --David Smith On Monday 01 October 2001 12:51 pm, you wrote: Out of the box, huh? I untar'ed tomcat (already have jdk 1.3.1 and jsse 1.0.2 installed) and got that setup

Re: Using jsp / servlets for main web site?

2001-10-01 Thread David Smith
advice. --David Smith On Monday 01 October 2001 03:37 pm, you wrote: I just started over from scratch and have everything working right except for c2. I've google'd the 'net as much as I can google and haven't found a solution. I've tried several things people have done to get it working (like

Re: Tc 3.2.3 SSL/HTTPS config

2001-10-18 Thread David Smith
Info on how SSL works is off topic here and there are some very good papers on the net on the subject. I did a short search with Google (search terms: SSL encryption protocol) and found a reasonable intro paper from Netsape on the subject. It's at least enough to get your feet wet. As far

Re: newbie question: Setting up MySql JDBC with Tomcat 4.0

2001-10-23 Thread David Smith
example: ... = DriverManager.getConnection( connectionURL, user, pass ) ; -- last thing I see is that MySQL seems to like a semi-colon at the end of all SQL statements. Hope this help you out. --David Smith On Monday 22 October 2001 03:54 pm, you wrote: Hi all, I am having problems

Re: URGENT, Tomcat MySQL problems

2001-10-23 Thread David Smith
-INF/lib should work depending on whether you want it available to all apps or just one. Hope this helps you. --David Smith On Tuesday 23 October 2001 11:57 am, you wrote: Hi guys, I am getting the following error: javax.servlet.ServletException: No suitable driver

Re: how to keep form data

2001-10-25 Thread David Smith
to the next page. Obviously do a quick check and if there is no form data skip the processing. If there's a problem, then just take the submitted form data and enter it back in the form with value=%= ... % attributes. --David Smith On Wednesday 24 October 2001 08:05 pm, you wrote: If you do

Error in mod-webapp nightly snapshot

2001-10-25 Thread David Smith
(at least for Tomcat 4.0.1) 'org.apache.catalina.net.ServerSocketFactory' I made the change in the snapshot I downloaded and it built without a hitch. --David Smith

Re: Tomcat 4 with Postgres 7.1

2001-10-31 Thread David Smith
driver is going to do and everything should be set. Just make sure you secure your db before making it available to the world with effective passwords, privileges, and a firewall. Hope this helps clear it up a bit. --David Smith On Tuesday 30 October 2001 08:35 pm, you wrote: Dear All. Can smbd

Re: TOMCAT 3.2 - 4.0, JDBC, MySQL

2001-10-31 Thread David Smith
There's not enough info to tell, but it looks like the MySQL driver and TC 4.0.1 are working correctly. Are you using the security manager that comes with TC 4?? If so, you need to modify catalina.policy to allow this connection. --David Smith On Wednesday 31 October 2001 09:51 am, you

Re: ClassNotFoundException when using war file (Tomcat 3.2.3)

2001-10-31 Thread David Smith
of My Computer. --David Smith On Wednesday 31 October 2001 11:01 am, you wrote: The examples that gets shipped with the tomcat.zip file also uses Web-inf [EMAIL PROTECTED] wrote: I'm new to tomcat but shouldn't it bet WEB-INF? isn't it case sensitive? Scott Archer [EMAIL

Re: TOMCAT 3.2 - 4.0, JDBC, MySQL

2001-10-31 Thread David Smith
you get. --David Smith On Wednesday 31 October 2001 11:33 am, you wrote: Hi David, I've started tc 4.0 with the init script. I'm not sure whether tomcat is started with -security or not. Which modifications are needed? How do these look like? Christian David Smith wrote: There's

Re: MySQL jdbc connection url [ + server.xml bug]

2001-11-01 Thread David Smith
. Works like a charm. The encoding does not have to be done in regular JSP or java files. Only XML files like server.xml require this. Everywhere else, just use an character. --David Smith On Thursday 01 November 2001 11:16 am, you wrote: At 1:51 PM +0100 11/1/01, Andrius wrote: Hello

Re: admin pages.

2001-11-01 Thread David Smith
of the TC version you use and yours could be different. Definitely restart Tomcat if you use the memory realm and edit tomcat-users.xml since this file is only read once at startup. --David Smith On Thursday 01 November 2001 01:45 pm, you wrote: I have tried manager, tomcat, tomcat_manager and none

Re: ....how to get tomcat running ? .........

2001-11-02 Thread David Smith
environment. Couldn't tell you the exact bug parade number, but it's posted at Sun's site. I've heard it's fixed in JDK 1.4, but I haven't tried it. --David Smith On Friday 02 November 2001 01:41 pm, you wrote: I am running into the same types of problems with Linux 7.0 running on a pentium

Re: How get Cocoon 1.8.1 with Tomcat 4.0.1 working?

2001-11-13 Thread David Smith
directory and restart TC or use the manager app to load the new app. Try to access them from your browser. Good luck and hope this helps. --David Smith On Monday 12 November 2001 07:53 pm, you wrote: Hello all, I have installed Tomcat 4.0.1 and Cocoon 1.8.2. I have done

Re: Quick clarification

2001-11-13 Thread David Smith
to serve requests on 80 and that's a nasty security problem. --David Smith On Tuesday 13 November 2001 02:45 am, you wrote: When requesting a jsp are you using a port request? Apache by default is set up on port 80 (the default port for all webservers) i.e. http://localhost Tomcat is set up

Re: Trouble connecting Apache 1.3 Tomcat 4 w/ mod_webApp

2001-11-15 Thread David Smith
config is below, there should only be one with both WebAppDeploy lines referencing it. This might be the source of your error. Good luck and hope this helps some. --David Smith On Thursday 15 November 2001 12:09 pm, you wrote: FreeBSD, Tomcat 4, Apache 1.3.19 Here's my config; Alias

Re: what does this error mean?

2001-11-15 Thread David Smith
a only a little experience using mod_jk (I use mod_webapp), but when I saw your cornell email address, I thought I'd try to help if possible. Anyway, good luck tracking it down. --David Smith On Thursday 15 November 2001 11:24 am, you wrote: [Thu Nov 15 11:18:53 2001] [jk_ajp13_worker.c (228

Re: AJP and Tomcat 4.0

2001-11-15 Thread David Smith
Sounds like you have TC 4.0. Check TC 4.0.1. It has the connector line in it and commented out by default. --David Smith On Thursday 15 November 2001 01:48 pm, you wrote: I KNOW this is probably a FAQ, though I cannot find the answer I need. I found a couple of messages dealing

Re: Configuration of Domino JDBC Driver...

2001-11-19 Thread David Smith
sure only authorized access is allowed to the database server. 4) The Domino web server does not have to be running. Generating and sending web content are the exclusive responsibility of Tomcat and/or Apache (or whatever webserver you're running). Hope this helps some. --David Smith On Friday

Re: [repost] loading class files

2001-11-19 Thread David Smith
/classes to work correctly. JSPs, static content, and client-side applets should all be outside the WEB-INF folder for proper operation. This is defined in the spec and is required for all applications conforming to it. Hope this clears some mystery. --David Smith On Monday 19 November 2001 12:41

Re: Mapping /servlet/ URLs to Tomcat 4.0.1 from Apache via mod_webapp

2001-11-19 Thread David Smith
in the right direction. Hope this helps. --David Smith On Sunday 18 November 2001 07:22 pm, you wrote: Greetings everyone, While still using Tomcat 3.2.1 and Apache 1.3.12 on the web server I maintain, I have been asked to reproduce a similar environment on a notebook running under Windows 2000

Re: New tomcat user questions

2001-11-19 Thread David Smith
it sits where I think it belongs and poolman.jar still sees it. The sym link idea may not work if you're on a different platform (ie Windows) though. --David Smith On Monday 19 November 2001 05:08 am, you wrote: Hi all, I'm running Tomcat 4.01 on Redhat 7.2 installed on an intel box. What

Re: Forbidden error, you are unable to access /examples from this server: please help, very urgent

2001-07-26 Thread David Smith
Just a thought on this thread and I've been guilty of this one as well, but you might also want to check directory and file permissions. If the user apache is running under does not have at least read permissions, the whole thing will fail regardless of settings in any .conf file. On

Re: Forbidden error, you are unable to access /examples from this server: please help, very urgent

2001-07-27 Thread David Smith
is dividing by zero - Original Message - From: David Smith [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 26, 2001 6:37 PM Subject: Re: Forbidden error, you are unable to access /examples from this server: please help, very urgent Just a thought on this thread

Re: VOTE: HTML in Messages and politeness (Was: Re: jdbc odbc bridge on linux)

2001-07-30 Thread David Smith
. David Smith, CISSP Network Operations Supervisor Cornell University Department of Entomology 2121 Comstock Hall Ithaca, NY 14853 Phone: (607) 255-9571 Fax: (607) 255-0939 Email: [EMAIL PROTECTED]

  1   2   3   4   >