Servlet / Tomcat question

2002-06-05 Thread Scott Seidl
I'm stumped. I have a web application (term used loosely) which was created using Borland's JBuilder. The servlets in this application worked fine when I ran them in JBuilder and accessed them locally. I now want to place them on an Apache Tomcat web server. I can compile and deploy the code

RE: Servlet / Tomcat question

2002-06-06 Thread Scott Seidl
/url-pattern /servlet-mapping And then you could access it as http://myserver.mydomain:myport/MyApp/MyServlet See the Servlet Spec (v2.3 if you're using tomcat v4.x) for what goes in the Deployment Descriptor etc. Yoav Shapira Millennium ChemInformatics -Original Message- From: Scott

RE: problem..plz help me out

2002-06-08 Thread Scott Seidl
I have been having the same problem. The only difference I have is that I have not made any changes, or use, server.xml or web.xml. Let me know how the suggestions work. Scott -Original Message- From: puneet sachar [mailto:[EMAIL PROTECTED]] Sent: Saturday, June 08, 2002 2:22 PM To:

RE: problem..plz help me out

2002-06-09 Thread Scott Seidl
I have been having the same problem as sachar, and I believe my problem is that I don't understand everything with tomcat 4. To remedy this, I'm going to get tomcat 3.3 and see if I can get that running. Can someone verify that Tomcat 3.3 and Tomcat 4 can be both be installed on a Linux

RE: Auto Start Tomcat

2002-06-11 Thread Scott Seidl
I have made the following entries in my '/etc/rc.local' file/script. This file/script is read on boot and will execute the commands listed. JAVA_HOME='/usr/java/j2sdk1.4.0/' export JAVA_HOME echo Starting Tomcat sh /usr/src/jakarta-tomcat-4.0.3-src/dist/bin/catalina.sh start -security sleep 5

web.xml how-to

2002-06-13 Thread Scott Seidl
Can someone give me a good resource on how to create the web.xml file for a web application using servlets? Thanks Scott