Re: Newbie: Question about first Servlet

2008-04-07 Thread Karthik Abram
8851-1 - Is that even a valid encoding? On 4/6/08, Kurt L Harless <[EMAIL PROTECTED]> wrote: > OK, figured it out. > > I changed the Character Set to > > > > Instead of > > > > I figured this out by using the tomcat.exe to start the service and saw the > dump message when it was trying to parse

RE: Newbie: Question about first Servlet

2008-04-07 Thread Caldarale, Charles R
> From: Russo, Joe [mailto:[EMAIL PROTECTED] > Subject: RE: Newbie: Question about first Servlet > > Try calling the servlet name instead of the class. Now this is starting to get silly. Of course you use the to access the servlet via HTTP; the is pretty much only to link the el

RE: Newbie: Question about first Servlet

2008-04-07 Thread Caldarale, Charles R
> From: David Cassidy [mailto:[EMAIL PROTECTED] > Subject: RE: Newbie: Question about first Servlet > > If i recall correctly the servlet must be in a package No, JSPs almost always must be in packages, but servlets do not. However, it's definitely bad practice not to put ser

RE: Newbie: Question about first Servlet

2008-04-07 Thread David Cassidy
If i recall correctly the servlet must be in a package On Mon, 2008-04-07 at 09:52 -0400, Russo, Joe wrote: > Try calling the servlet name instead of the class. You may need to get > rid of the space in the name. > > > > > > -Original Message- > From: Kurt L Harless [mailto:[EMA

RE: Newbie: Question about first Servlet

2008-04-07 Thread Russo, Joe
Try calling the servlet name instead of the class. You may need to get rid of the space in the name. -Original Message- From: Kurt L Harless [mailto:[EMAIL PROTECTED] Sent: Sunday, April 06, 2008 1:14 AM To: users@tomcat.apache.org Subject: Newbie: Question about first Servlet

Re: Newbie: Question about first Servlet

2008-04-06 Thread Alan Chaney
Actually ISO-8851-1 according to Google is a standard determining the moisture content of butter. http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=35218 However, ISO-8859-1 is the Latin character set definition. Probably ISO-8859-1 is more relevant. Anyway, y

RE: Newbie: Question about first Servlet

2008-04-05 Thread Kurt L Harless
OK, figured it out. I changed the Character Set to Instead of I figured this out by using the tomcat.exe to start the service and saw the dump message when it was trying to parse my xml file. Is this not the valid way of coding this encoding? -Original Message- From: Kurt L Harles