RE: (newb) Tomcat servlet mapping problem

2006-01-24 Thread Darren Hall
> Hmm, you're mixing up that "/servlet" story. > Better remove everything named "servlet" from > your environment... It is only confusing. > > Create app.xml, put the Context path "/" > or "/app", and then "/FCLxyzServlet" or > "/app/FCLxyzServlet" are the correct URLs. > > Does that make any se

Re: (newb) Tomcat servlet mapping problem

2006-01-23 Thread Georg Sauer-Limbach
Darren Hall wrote: (I wasn't sure how to configure the ResourceBundle in the code. I copied all the files the resource bundle seemed to be referring to into my /servlet directory along with the compiled HelloWorldServlet code, but it still complained on execution that it couldn't locate the reso

Re: (newb) Tomcat servlet mapping problem

2006-01-23 Thread Georg Sauer-Limbach
Mike Sabroff wrote: /simple-servlet should be /simple-servlet/* Does not need to. You can specify paths without wildcards, which then only match that very url. The whole story about servlet mappings (which is quite short actually) is concisely explained in section 11.2 of the Servlet specifica

RE: (newb) Tomcat servlet mapping problem

2006-01-23 Thread Darren Hall
Georg, > if I look at your original configuration > > > > > SimpleServlet > > /simple-servlet > > > ---snip--- > > reloadable="true" debug="99"> > > then, if I am not overlooking something, > the correct URL to invoke the servlet is > > http://localhost/simple-servlet

Re: (newb) Tomcat servlet mapping problem

2006-01-23 Thread Mike Sabroff
/simple-servlet should be /simple-servlet/* Georg Sauer-Limbach wrote: Darren, if I look at your original configuration SimpleServlet /simple-servlet ---snip--- reloadable="true" debug="99"> then, if I am not overlooking something, the correct URL to invoke the

Re: (newb) Tomcat servlet mapping problem

2006-01-23 Thread Georg Sauer-Limbach
Darren, if I look at your original configuration SimpleServlet /simple-servlet ---snip--- then, if I am not overlooking something, the correct URL to invoke the servlet is http://localhost/simple-servlet/simple-servlet because the first "simple-servlet" is the C

Re: (newb) Tomcat servlet mapping problem

2006-01-23 Thread Petr Hadraba
test it! Thank you very much! PETR On 1/23/06, Caldarale, Charles R <[EMAIL PROTECTED]> wrote: > > From: Petr Hadraba [mailto:[EMAIL PROTECTED] > > Subject: Re: (newb) Tomcat servlet mapping problem > > > > How can I ommit the servlet name in the URL? > > Your

RE: (newb) Tomcat servlet mapping problem

2006-01-23 Thread Caldarale, Charles R
> From: Darren Hall [mailto:[EMAIL PROTECTED] > Subject: RE: (newb) Tomcat servlet mapping problem > > So, my question is... why am I getting the "ClassDefNotFound" > error, and how do I correct it (or can I, given my current > configuration)? Simplistic packageless

RE: (newb) Tomcat servlet mapping problem

2006-01-23 Thread Darren Hall
y 23, 2006 2:46 PM To: 'Tomcat Users List' Subject: RE: (newb) Tomcat servlet mapping problem > On 1/23/06, Darren Hall <[EMAIL PROTECTED]> wrote: > > > > From: Darren Hall [mailto:[EMAIL PROTECTED] > > > > Subject: RE: (newb) Tomcat servlet mapping proble

RE: (newb) Tomcat servlet mapping problem

2006-01-23 Thread Darren Hall
> On 1/23/06, Darren Hall <[EMAIL PROTECTED]> wrote: > > > > From: Darren Hall [mailto:[EMAIL PROTECTED] > > > > Subject: RE: (newb) Tomcat servlet mapping problem > > > > > > > > Is there a way I can map these servlets (in the web.xml f

RE: (newb) Tomcat servlet mapping problem

2006-01-23 Thread Caldarale, Charles R
> From: Petr Hadraba [mailto:[EMAIL PROTECTED] > Subject: Re: (newb) Tomcat servlet mapping problem > > How can I ommit the servlet name in the URL? Your application must become the default app. To do this, it must be named ROOT (case sensitive). You can achieve this by: 1) r

Re: (newb) Tomcat servlet mapping problem

2006-01-23 Thread Petr Hadraba
r your tips. > > PETR > > > On 1/23/06, Len Popp <[EMAIL PROTECTED]> wrote: > > On 1/23/06, Darren Hall <[EMAIL PROTECTED]> wrote: > > > > > From: Darren Hall [mailto:[EMAIL PROTECTED] > > > > > Subject: RE: (newb) Tomcat servlet mapping prob

Re: (newb) Tomcat servlet mapping problem

2006-01-23 Thread Petr Hadraba
1/23/06, Darren Hall <[EMAIL PROTECTED]> wrote: > > > > From: Darren Hall [mailto:[EMAIL PROTECTED] > > > > Subject: RE: (newb) Tomcat servlet mapping problem > > > > > > > > Is there a way I can map these servlets (in the web.xml file) so > >

Re: (newb) Tomcat servlet mapping problem

2006-01-23 Thread Len Popp
On 1/23/06, Darren Hall <[EMAIL PROTECTED]> wrote: > > > From: Darren Hall [mailto:[EMAIL PROTECTED] > > > Subject: RE: (newb) Tomcat servlet mapping problem > > > > > > Is there a way I can map these servlets (in the web.xml file) so > > > tha

RE: (newb) Tomcat servlet mapping problem

2006-01-23 Thread Darren Hall
> > From: Darren Hall [mailto:[EMAIL PROTECTED] > > Subject: RE: (newb) Tomcat servlet mapping problem > > > > Is there a way I can map these servlets (in the web.xml file) so > > that Tomcat can see them and execute them? > > Not that I'm aware of, s

RE: (newb) Tomcat servlet mapping problem

2006-01-23 Thread Caldarale, Charles R
> From: Darren Hall [mailto:[EMAIL PROTECTED] > Subject: RE: (newb) Tomcat servlet mapping problem > > Is there a way I can map these servlets (in the web.xml file) so > that Tomcat can see them and execute them? Not that I'm aware of, since the application code is in v

RE: (newb) Tomcat servlet mapping problem

2006-01-23 Thread Darren Hall
age- From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: Sunday, January 22, 2006 9:19 PM To: Tomcat Users List Subject: RE: (newb) Tomcat servlet mapping problem > From: Darren Hall [mailto:[EMAIL PROTECTED] > Subject: RE: (newb) Tomcat servlet mapping problem > > I have. T

RE: (newb) Tomcat servlet mapping problem

2006-01-22 Thread Caldarale, Charles R
> From: Darren Hall [mailto:[EMAIL PROTECTED] > Subject: RE: (newb) Tomcat servlet mapping problem > > I have. The servlets I am trying to deploy (err, map?) do not > have a package associated with them. Not sure if your first sentence meant you found the problem, but just to

RE: (newb) Tomcat servlet mapping problem

2006-01-22 Thread Darren Hall
vDisplayServlet -Original Message- From: foo shyn [mailto:[EMAIL PROTECTED] Sent: Sunday, January 22, 2006 8:52 PM To: Tomcat Users List Subject: Re: (newb) Tomcat servlet mapping problem Have u checked ur web.xml configuration? The error sounds like Tomcat facing problem finding ur ser

RE: (newb) Tomcat servlet mapping problem

2006-01-22 Thread Darren Hall
I specify the classpath for the classloader for this app? (Please forgive my Tomcat classloading ignorance.) Darren -Original Message- From: Darren Hall [mailto:[EMAIL PROTECTED] Sent: Sunday, January 22, 2006 8:44 PM To: 'Tomcat Users List'; [EMAIL PROTECTED] Subject: RE: (newb)

Re: (newb) Tomcat servlet mapping problem

2006-01-22 Thread foo shyn
To: Darren Hall; 'Tomcat Users List' Subject: RE: (newb) Tomcat servlet mapping problem Date sent: Sun, 22 Jan 2006 19:55:36 -0500 From: Darren Hall <[EMAIL PROTECTED]> Subject:RE: (newb) Tomcat servlet mapping problem To: 'Tomcat Users List'

RE: (newb) Tomcat servlet mapping problem

2006-01-22 Thread Darren Hall
na.log, nothing goes to stdout.log or stderr.log at all) so it makes fixing this problem that much more fun/challenging! -Original Message- From: Steve Ochani [mailto:[EMAIL PROTECTED] Sent: Sunday, January 22, 2006 8:37 PM To: Darren Hall; 'Tomcat Users List' Subject: RE: (

RE: (newb) Tomcat servlet mapping problem

2006-01-22 Thread Steve Ochani
Date sent: Sun, 22 Jan 2006 19:55:36 -0500 From: Darren Hall <[EMAIL PROTECTED]> Subject: RE: (newb) Tomcat servlet mapping problem To: 'Tomcat Users List' Send reply to: Tomcat Users List > &

RE: (newb) Tomcat servlet mapping problem

2006-01-22 Thread Darren Hall
al Message- From: Warren Pace [mailto:[EMAIL PROTECTED] Sent: Saturday, January 21, 2006 9:34 AM To: Tomcat Users List Subject: Re: (newb) Tomcat servlet mapping problem > > From: "Darren Hall" <[EMAIL PROTECTED]> > Date: 2006/01/20 Fri PM 02:28:22 EST > To: >

Re: (newb) Tomcat servlet mapping problem

2006-01-21 Thread Warren Pace
> > From: "Darren Hall" <[EMAIL PROTECTED]> > Date: 2006/01/20 Fri PM 02:28:22 EST > To: > Subject: (newb) Tomcat servlet mapping problem > > I'm running Tomcat 5.0.30 and Apache 2.0 (both are running fine and without > errors). > > I've

(newb) Tomcat servlet mapping problem

2006-01-20 Thread Darren Hall
I'm running Tomcat 5.0.30 and Apache 2.0 (both are running fine and without errors). I've connected them using mod_jk2, and I can see that apache is correctly forwarding URLs specified in the workers2.properties file correctly. I am now attempting to map a test servlet called "SimpleServlet" t