Re: 404 for JSPs

2009-12-23 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Clay, On 12/20/2009 9:32 PM, Clay McCoy wrote: > When I run embedded Tomcat my jsps 404, but my servlets work. When I > run standard (by putting my war on the Tomcat/webapps directory) my > servlets 404 but my jsps work (without any css). Can anyone s

Re: 404 for JSPs

2009-12-20 Thread Konstantin Kolinko
2009/12/21 Clay McCoy : > Thank you, this got me closer.  I have two questions: > > 1)  My current web.xml didn't configure the jsp servlet.  I haven't had do > configure that for a number of other containers.  I don't understand why I > had to do this specifically for Tomcat. You do not have to

Re: 404 for JSPs

2009-12-20 Thread Clay McCoy
Apparently Groovy 1.7 rc2 uses an outdated jsp api (2.0) and Tomcat 6 uses 2.1 This conflict was causing me problems. Of all the libraries, I was very surprised to see the conflict between the latest Tomcat and Groovy. Things still aren't right, but I don't know how to report what I am seeing y

Re: 404 for JSPs

2009-12-20 Thread Clay McCoy
Thank you, this got me closer. I have two questions: 1) My current web.xml didn't configure the jsp servlet. I haven't had do configure that for a number of other containers. I don't understand why I had to do this specifically for Tomcat. It also seems bizarre that the jsps worked without

Re: 404 for JSPs

2009-12-20 Thread Konstantin Kolinko
2009/12/21 Clay McCoy : > When I run embedded Tomcat my jsps 404, but my servlets work. I guess that you do not have the Jsp servlet configured. See conf/web.xml. - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For

Re: 404 for JSPs

2009-12-20 Thread Clay McCoy
Oh, and no errors in the logs. On 12/20/09 8:32 PM, "Clay McCoy" wrote: When I run embedded Tomcat my jsps 404, but my servlets work. When I run standard (by putting my war on the Tomcat/webapps directory) my servlets 404 but my jsps work (without any css). Can anyone shed some light on this?

404 for JSPs

2009-12-20 Thread Clay McCoy
When I run embedded Tomcat my jsps 404, but my servlets work. When I run standard (by putting my war on the Tomcat/webapps directory) my servlets 404 but my jsps work (without any css). Can anyone shed some light on this? My startup script for embedded is here: http://gist.github.com/259737 Thank