RE: tomcat configuration for a newbie

2002-11-07 Thread Turner, John
omcat/tomcat-5.0-doc/class-loader-howto.html John > -Original Message- > From: ben f [mailto:ben_m_f@;yahoo.co.uk] > Sent: Thursday, November 07, 2002 4:23 AM > To: Tomcat Users List > Subject: RE: tomcat configuration for a newbie > > > > Hari > Good point,

Re: tomcat configuration for a newbie

2002-11-07 Thread karthik_s
ED]> Sent: Thursday, November 07, 2002 2:53 PM Subject: RE: tomcat configuration for a newbie > > Hari > Good point, I see that my url-pattern entry of phpserver was incorrect. I've changed this now to your recommendation of: > helloworld > /helloworld > I then try h

Re: tomcat configuration for a newbie

2002-11-07 Thread ben f
Kwok Thanks for the reply. I've made some progress since I mailed. I put the servlet HelloWorldExample.class in webapps\phpserver\WEB-INF\classes then opened up http://localhost:8080/phpserver/helloworld (using the web.xml described in my last post). I got the following: java.util.MissingResour

Re: tomcat configuration for a newbie

2002-11-07 Thread Kwok Peng Tuck
Make sure your servlets are either in /WEB-INF/lib (if in a jar ) or /WEB-INF/classes/ (if as .class) ben f wrote: Hari Good point, I see that my url-pattern entry of phpserver was incorrect. I've changed this now to your recommendation of: helloworld /helloworld I then try http://localhost:8080

RE: tomcat configuration for a newbie

2002-11-07 Thread ben f
Hari Good point, I see that my url-pattern entry of phpserver was incorrect. I've changed this now to your recommendation of: helloworld /helloworld I then try http://localhost:8080/phpserver/servlet/helloworld but I still get a 404 error. Does anyone else have ideas about this? I have a feeling

RE: tomcat configuration for a newbie

2002-11-06 Thread Turner, John
From: Hari Venkatesan [mailto:hvenkatesan@;pfgc.com] > Sent: Wednesday, November 06, 2002 1:35 PM > To: Tomcat Users List > Subject: RE: tomcat configuration for a newbie > > > Try this > > > helloworld > /helloworld > > > http://localh

RE: tomcat configuration for a newbie

2002-11-06 Thread Hari Venkatesan
Users List' Subject: RE: tomcat configuration for a newbie try localhost:8080, which is a default for Tomcat -Original Message- From: ben f [mailto:ben_m_f@;yahoo.co.uk] Sent: Wednesday, November 06, 2002 10:06 AM To: [EMAIL PROTECTED] Subject: tomcat configuration for a newbie Hi I

RE: tomcat configuration for a newbie

2002-11-06 Thread Arthur Danekyants
try localhost:8080, which is a default for Tomcat -Original Message- From: ben f [mailto:ben_m_f@;yahoo.co.uk] Sent: Wednesday, November 06, 2002 10:06 AM To: [EMAIL PROTECTED] Subject: tomcat configuration for a newbie Hi I am trying to get tomcat to work but unfortunately I am not

tomcat configuration for a newbie

2002-11-06 Thread ben f
Hi I am trying to get tomcat to work but unfortunately I am not getting far. Tomcat version is 4.1.12 I have created a directory under webapps called phpserver. This directory is intended to serve php pages using php as a servlet from an NT 4.0 machine. I will go onto that once I have the bas