Classpath problems with tomcat 3.2.1 standalone.

2001-04-10 Thread Renee Petris
I've at my wits end trying to resolve ClassNotFoundExceptions using tomcat 3.2.1 and jdk 1.2.2.   I'm using JMS and JNDI that relies on a jar file and a zip file, fmprtl.zip and j2ee.jar. I need j2ee.jar for the javax.naming classes which aren't included in jdk1.2.2. I explicitly added the

jsp and config.getInitParameter()

2001-02-07 Thread Renee Petris
Has anybody had success using config.getInitParameter() in jsp pages?   I was looking at the web.dtd and noticed that the the servlet element is defined as: jsp-file is described as: Based on how init-param is used for servlets, I assumed that for a jsp page the web.xml would look like

RE: build failed on tomcat

2000-11-30 Thread Renee Petris
You' need to install an XML parser that is compatible with the Java API for XML Parsing (JAXP) specification. Try Sun's reference implementation at: http://java.sun.com/xml. You'll need to add jaxp.jar and parser.jar to your classpath. -Original Message- From: Robert B. Easter [mailto

RE: servlet mappings???

2000-11-03 Thread Renee Petris
I've done the same thing my self. What you have below looks okay. Are you sure the servlet class name is right? Including package name and capitalization? Can you directly access the servlet? Do you have other mappings to /* or for the servlet? Even just: router /router If you have confl

RE: tutorials wanted

2000-11-01 Thread Renee Petris
http://java.sun.com/docs/books/tutorial/servlets/index.html http://java.sun.com/products/jsp/docs.html -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 01, 2000 3:26 AM To: [EMAIL PROTECTED] Subject: tutorials wanted Hello all, First of a

RE: Trouble installng Tomcat on (Debian) Linux

2000-10-31 Thread Renee Petris
Looks like there was a problem parsing an xml file. Since tomcat.log doesn't exist, your server.xml file may have a problem. Did you modify it? -Original Message-From: Gregory Guthrie [mailto:[EMAIL PROTECTED]]Sent: Tuesday, October 31, 2000 9:51 AMTo: [EMAIL PROTECTED]Cc:

RE: Debugging Tomcat 3.1

2000-10-31 Thread Renee Petris
Since I don't use an ide for developing, I just use the old System.out.println() to print to the console or the log() method of the servlet to print to servlet.log. You can use a init-param in your web.xml to customize the level of logging you do. -Original Message- From: [EMAIL PROTECTED

RE: Please Help!!! Error loading tomcat

2000-10-31 Thread Renee Petris
I've occasionally received segmentation faults when I had code compiled under one version of the jdk, and tried to run it under another version of the jdk. Check the paths to the jvm tomcat is using, and the paths you used to compile any code. -Original Message- From: Mauricio Nuñez [mail

RE: Tomcat Startup Error Question

2000-10-27 Thread Renee Petris
What do you have in your server.xml file? -Original Message- From: J. Edwin Upson [mailto:[EMAIL PROTECTED]] Sent: Friday, October 27, 2000 11:00 AM To: [EMAIL PROTECTED] Subject: Tomcat Startup Error Question Hi all, I am a first time user of Tomcat and have a problem with startup (t

error messages in tomcat.log

2000-10-20 Thread Renee Petris
Occasionally when starting tomcat I get the message: "Check logs/tomcat.log for error messages", but when I check tomcat.log, there aren't any error messages. Anyone know what could be causing this behavior? Renée PetrisOverseer of the ExecutionLoudeye Technologies[EMAIL PROTECTED]414 Olive

RE: Adding a Servlet documentation

2000-10-20 Thread Renee Petris
To map a servlet class to an alias you need to modify the web.xml file in the WEB-INF directory containing your class files. The syntax is: shortName className Then to map a url: /shortName shortName These go

stopping tomcat when running it stand along

2000-10-20 Thread Renee Petris
I am running tomcat standalone on WinNT 4.0. Following the instructions in the user's guide, I removed the unneeded the unneeded Ajp12 connector. Now my server.xml only contains:           name="handler"    value="org.apache.tomcat.service.http.HttpConnectio