Re: JasperException: The absolute uri: http://java.sun.com/jstl/core cannot be resolved....

2006-11-14 Thread David Delbecq
Show us your web.xml please. Mano a écrit : On 11/13/06, David Delbecq [EMAIL PROTECTED] wrote: Your problem is most probably the leading space in your URI. Remove the space between the quote and the http:// Thanks, David. I was hoping this would solve the problem but it did not! I

Re: JasperException: The absolute uri: http://java.sun.com/jstl/core cannot be resolved....

2006-11-14 Thread Mano
On 11/14/06, David Delbecq [EMAIL PROTECTED] wrote: Show us your web.xml please. web.xml: ?xml version=1.0 encoding=UTF-8? !DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN' 'http://java.sun.com/dtd/web-app_2_3.dtd' web-app servlet

Re: JasperException: The absolute uri: http://java.sun.com/jstl/core cannot be resolved....

2006-11-14 Thread David Delbecq
Ok, you must replace you web.xml with a 2.4 compliant web.xml, i think in 2.3 specs tomcat does not load the tlds from jars by default. To do this, replace this section at begin of web.xml ?xml version=1.0 encoding=UTF-8? !DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application

Re: JasperException: The absolute uri: http://java.sun.com/jstl/core cannot be resolved....

2006-11-14 Thread Mano
Meanwhile, I tried setting up and running the 'springapp' example found in the spring docs exactly as instructed there and when I try to access localhost:8080/springapp I get the following error: javax.servlet.ServletException: Servlet.init() for servlet springapp threw exception

Re: JasperException: The absolute uri: http://java.sun.com/jstl/core cannot be resolved....

2006-11-14 Thread Mano
On 11/14/06, David Delbecq [EMAIL PROTECTED] wrote: Ok, you must replace you web.xml with a 2.4 compliant web.xml, i think in 2.3 specs tomcat does not load the tlds from jars by default. To do this, replace this section at begin of web.xml ?xml version=1.0 encoding=UTF-8? !DOCTYPE web-app

Re: JasperException: The absolute uri: http://java.sun.com/jstl/core cannot be resolved....

2006-11-14 Thread Mano
On 11/14/06, Mano [EMAIL PROTECTED] wrote: /usr/local/apache-tomcat/webapps/mano-projects/mostgain Now the include directive in index.jsp looks like this: %@ include file=/WEB-INF/jsp/include.jsp % David, Terribly sorry. I might have confused you a bit. When I have the include directive as

Re: JasperException: The absolute uri: http://java.sun.com/jstl/core cannot be resolved....

2006-11-14 Thread David Delbecq
How did you deploy your web application? Normally, tomcat webapplicaiton are under webapps/ folder Looking at your structure, i think tomcat except to find this structure: /usr/local/apache-tomcat/webapps/mano-projects/WEB-INF /usr/local/apache-tomcat/webapps/mano-projects/WEB-INF/lib and only

Re: JasperException: The absolute uri: http://java.sun.com/jstl/core cannot be resolved....

2006-11-14 Thread Mano
On 11/14/06, David Delbecq [EMAIL PROTECTED] wrote: How did you deploy your web application? Normally, tomcat webapplicaiton are under webapps/ folder Looking at your structure, i think tomcat except to find this structure: /usr/local/apache-tomcat/webapps/mano-projects/WEB-INF

JasperException: The absolute uri: http://java.sun.com/jstl/core cannot be resolved....

2006-11-13 Thread Mano
Hi, Am trying to get the Springapp (the example found in the Spring Framework 2.0 running on my system. Am running Tomcat 5.5.17 and jdk 1.5). When I try to access localhost:8080/mano-projects/mostgain/ I get the following error: _ exception

Re: JasperException: The absolute uri: http://java.sun.com/jstl/core cannot be resolved....

2006-11-13 Thread David Delbecq
This is most probably a problem in the example webapplication (missing jstl related jar). Refer to spring framework mailing list. Mano a écrit : Hi, Am trying to get the Springapp (the example found in the Spring Framework 2.0 running on my system. Am running Tomcat 5.5.17 and jdk 1.5). When

Re: JasperException: The absolute uri: http://java.sun.com/jstl/core cannot be resolved....

2006-11-13 Thread David Delbecq
Hi, sorry, i just read the bottom of you email, i thought you had downloaded a spring app and it wasn't working. (Overlooked the bottom as a signature ^^) Your problem is most probably the leading space in your URI. Remove the space between the quote and the http:// David Delbecq a écrit : This

Re: JasperException: The absolute uri: http://java.sun.com/jstl/core cannot be resolved....

2006-11-13 Thread Martin Gainty
of it or its contents - Original Message - From: David Delbecq [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Monday, November 13, 2006 8:01 AM Subject: Re: JasperException: The absolute uri: http://java.sun.com/jstl/core cannot be resolved This is most probably

Re: JasperException: The absolute uri: http://java.sun.com/jstl/core cannot be resolved....

2006-11-13 Thread Mano
On 11/13/06, David Delbecq [EMAIL PROTECTED] wrote: Your problem is most probably the leading space in your URI. Remove the space between the quote and the http:// Thanks, David. I was hoping this would solve the problem but it did not! I still get the same error.

Re: JasperException: The absolute uri: http://java.sun.com/jstl/core cannot be resolved....

2006-11-13 Thread Mano
On 11/13/06, Martin Gainty [EMAIL PROTECTED] wrote: Mano- I would start with a working Spring webapp such as petclinic sample webapp from spring and modify the code accordingly Feel free to contact me offline as this specific issue appears to be a mis-alignment with your spring environment