RE: Web.xml entries

2008-12-12 Thread paul.ockleford
Ok thanks for the quick response! -Original Message- From: Mark Thomas [mailto:ma...@apache.org] Sent: 12 December 2008 11:50 To: Tomcat Users List Subject: Re: Web.xml entries paul.ocklef...@nhs.net wrote: > Hi, > > I have a basic question about the tomcat server start-up.

Re: Web.xml entries

2008-12-12 Thread Mark Thomas
paul.ocklef...@nhs.net wrote: > Hi, > > I have a basic question about the tomcat server start-up. If there are > classes missing that are referenced as servlet entries in the web.xml should > this render the server unuseable? No. But it should, and I believe it does, render that web application u

Web.xml entries

2008-12-12 Thread paul.ockleford
Hi, I have a basic question about the tomcat server start-up. If there are classes missing that are referenced as servlet entries in the web.xml should this render the server unuseable? I did a little test today with a web app, and when tomcat started it reported class not found exceptions for th

RE: Re: What, exactly, is meant by "full path" when construction web.xml entries

2006-03-20 Thread Manivannan.P
29 -0500 To: Tomcat Users List Subject: Re: What, exactly, is meant by "full path" when construction web.xml entries More like: package com.kilonovember ; // imports here public class Monkey extends HttpServlet{ // methods and programming } Note I didn't include the class n

RE: Re: What, exactly, is meant by "full path" when construction web.xml entries

2006-03-20 Thread cknell
EMAIL PROTECTED] - email -Original Message- From: David Smith <[EMAIL PROTECTED]> Sent: Mon, 20 Mar 2006 10:28:29 -0500 To: Tomcat Users List Subject: Re: What, exactly, is meant by "full path" when construction web.xml entries More

Re: What, exactly, is meant by "full path" when construction web.xml entries

2006-03-20 Thread David Smith
More like: package com.kilonovember ; // imports here public class Monkey extends HttpServlet{ // methods and programming } Note I didn't include the class name in the package name. This creates a class with the full name of com.kilonovember.Monkey. --David [EMAIL PROTECTED] wrote: Th

RE: Re: What, exactly, is meant by "full path" when construction web.xml entries

2006-03-20 Thread cknell
Thanks for the sanity check. That did what I expected, so to expand on this, if I were creating a "real" servlet whose source code opened like this: package com.kilonovember.Monkey; import javax.servlet.*; import javax.servlet.http.*; import java.io.*; public class Monkey extends HttpServlet{ .

Re: What, exactly, is meant by "full path" when construction web.xml entries

2006-03-20 Thread David Smith
Ok. Not reading the spec is your choice and so are the problems that might come of it. Even if you don't read it, keep it around as a reference. It might come in handy when you need an authoritative answer to a question. --David [EMAIL PROTECTED] wrote: Thanks for your reply, but readi

Re: What, exactly, is meant by "full path" when construction web.xml entries

2006-03-20 Thread David Smith
While packageless classes are frowned upon, and will bite you later, below should work. Restart the ROOT webapp using the manager applet (http://localhost:8080/manager/html) and then try http://localhost:8080/ch1. Check the logs for errors ch1 Ch1Servlet

RE: Re: What, exactly, is meant by "full path" when construction web.xml entries

2006-03-20 Thread cknell
st Subject: Re: What, exactly, is meant by "full path" when construction web.xml entries [EMAIL PROTECTED] a écrit : >I've poked at Tomcat for several years now. I find myself looking for a job >and have too much time on my hands, so I've decided to take servlets se

RE: RE: What, exactly, is meant by "full path" when construction web.xml entries

2006-03-20 Thread cknell
dvice. -- Charles Knell [EMAIL PROTECTED] - email -Original Message- From: Caldarale, Charles R <[EMAIL PROTECTED]> Sent: Mon, 20 Mar 2006 07:59:05 -0600 To: "Tomcat Users List" Subject: RE: What, exactly, is meant by "full path" when construction we

RE: What, exactly, is meant by "full path" when construction web.xml entries

2006-03-20 Thread Caldarale, Charles R
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Subject: What, exactly, is meant by "full path" when > construction web.xml entries > > Yesterday I spent a fair amount of time Googling for how to > set up a pair of elements in the > web.xml file on my Wi

Re: What, exactly, is meant by "full path" when construction web.xml entries

2006-03-20 Thread David Delbecq
[EMAIL PROTECTED] a écrit : >I've poked at Tomcat for several years now. I find myself looking for a job >and have too much time on my hands, so I've decided to take servlets seriously >and grasp the concepts. > >Yesterday I spent a fair amount of time Googling for how to set up a > pair of el

What, exactly, is meant by "full path" when construction web.xml entries

2006-03-20 Thread cknell
I've poked at Tomcat for several years now. I find myself looking for a job and have too much time on my hands, so I've decided to take servlets seriously and grasp the concepts. Yesterday I spent a fair amount of time Googling for how to set up a pair of elements in the web.xml file on my Wi