Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've been having the following problem with my GoDaddy's server. I am using JSPs with the JSTL Library. My /WEB-INF/lib folder contains the following libraries:

jstl.jar standard.jar

My JSP looks something like this:

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

<p>Hello!   <%
out.print(System.getProperty("java.class.path")); 

%></p>

But I keep getting the following exception:

org.apache.jasper.JasperException: The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application

Any ideas as to why it is doing that?

Thanks

share|improve this question
what version of JSTL are you using? – Buhake Sindi Mar 11 '10 at 18:21
As you explicitly mentioned Godaddy, may I assume that it "just" works at local dev environment? If so, how does your web.xml look like? – BalusC Mar 11 '10 at 18:33

2 Answers

up vote 13 down vote accepted

You need to get the right version of JSTL, they use different URIs.

If that one's not working, try: http://download.java.net/maven/1/jstl/jars/jstl-1.2.jar (JSTL 1.2), or pull down the 1.1 JSTL jars.

There's a more detailed list of versions/URIs at javaranch.

share|improve this answer

you need to add Following jar file in your web application

jakarta-jstl-1.1.2.jar
and jakarta-standard-1.1.2.jar files

Recently I have same problem, that i have resolved by adding above two jar files

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.