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
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:

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

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