• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Struts URI nuttiness

 
Ranch Hand
Posts: 77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have this in several of my JSPs:

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

When I rebuild the application I am told, "JspTranslate: This absolute uri (http://java.sun.com/jstl/fmt) cannot be resolved in either web.xml or the jar files deployed with this application."

I have standard.jar, struts.jar, struts-el.jar, and jstl.jar in my classpath.

standard.jar includes c.tld and fmt.tld so I am at a loss. I didn't see a core.tld anywhere. There are nothing that refers to the URIs in my web.xml. Adding configs didn't change the result.

If I swap the order of the @taglib's above, I get the same error, but on "core" taglib line.
 
Ranch Hand
Posts: 4864
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It is very important that the URL match the J2EE version you are using. If your web application uses Servlet V2.4, the url is:

http://java.sun.com/jsp/jstl/core

If your web application uses Servlet V2.3, the url is:

http://java.sun.com/jstl/core

You can tell which version your web application is using by looking at the URI of the DTD at the beginning of your web.xml file.
 
Tony Smith
Ranch Hand
Posts: 77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm using version 2.3.

A little more information - this project compiled fine until yesterday. I did an update from the code manager and things broke instantly. My co-worker on this project is using an identical development environment.

I just checked and verified that none of Websphere's project files were overwritten from the code manager.
[ May 11, 2006: Message edited by: Tony Smith ]
 
Ranch Hand
Posts: 948
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Do you have entries for these taglibs in your web.xml file? If so, what is the taglib-uri value there?

- Brent
 
Always look on the bright side of life. At least this ad is really tiny:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic