[JBoss-user] hello.ear example: Servlet works OK, but not JSP

2001-06-20 Thread Richard Kasperowski
Allen Fogleson's hello example from June 16 is a nice tutorial and works well enough. I'm having a problem with it, though. This URL works fine: http://localhost:8080/hello It maps directly to the servlet. These URLs don't work: http://localhost:8080/hello/ http://localhost:8080/hello

Re: [JBoss-user] hello.ear example: Servlet works OK, but not JSP

2001-06-20 Thread Gabriel Mihalache
> Using a .ear file as in Allen's example, how do I get JBoss+TomCat to > handle things that aren't servlets? Do you have the /lib/tools.jar from your JDK in you classpath? You need it to compile JSPs! ___ JBoss-user mailing list [EMAIL PROTECTED] ht

Re: [JBoss-user] hello.ear example: Servlet works OK, but not JSP

2001-06-20 Thread Richard Kasperowski
Gabriel Mihalache wrote: >>Using a .ear file as in Allen's example, how do I get JBoss+TomCat to >>handle things that aren't servlets? >> > > Do you have the /lib/tools.jar from your JDK in you classpath? > You need it to compile JSPs! Yeah, that would emit a different error message. The Jav

Re: [JBoss-user] hello.ear example: Servlet works OK, but not JSP

2001-06-20 Thread danch (Dan Christopherson)
What is the context root set to in the web.xml for the web app? You should be able to hit JSPs via 'http://localhost:8080//foo.jsp Richard Kasperowski wrote: > Allen Fogleson's hello example from June 16 is a nice tutorial and works > well enough. > > I'm having a problem with it, though. Th

Re: [JBoss-user] hello.ear example: Servlet works OK, but not JSP

2001-06-20 Thread Allen fogleson
, 2001 3:29 PM Subject: [JBoss-user] hello.ear example: Servlet works OK, but not JSP > Allen Fogleson's hello example from June 16 is a nice tutorial and works > well enough. > > I'm having a problem with it, though. This URL works fine: > > http://localhost:8080/he

Re: [JBoss-user] hello.ear example: Servlet works OK, but not JSP

2001-06-20 Thread Richard Bottoms
At 04:20 PM 6/20/01 -0500, you wrote: >What is the context root set to in the web.xml for the web app? That's actually set in application.xml in the example: webapp.war / r.b. ___ JBoss-user mailing list [EMAIL PROTECTED] http:

Re: [JBoss-user] hello.ear example: Servlet works OK, but not JSP

2001-06-20 Thread Richard Kasperowski
danch (Dan Christopherson) wrote: > What is the context root set to in the web.xml for the web app? > > You should be able to hit JSPs via 'http://localhost:8080//foo.jsp Context root in web.xml? Do you mean in application.xml? Ah, there's the clue we needed. In application.xml for the hell

Re: [JBoss-user] hello.ear example: Servlet works OK, but not JSP

2001-06-20 Thread Allen fogleson
nesday, June 20, 2001 5:03 PM Subject: Re: [JBoss-user] hello.ear example: Servlet works OK, but not JSP > Gabriel Mihalache wrote: > > >>Using a .ear file as in Allen's example, how do I get JBoss+TomCat to > >>handle things that aren't servlets? > >> >