• 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

installing JSTL behind firewall

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm trying to install the Java Standard Tag Libraries on my WSAD local environment, but as soon as I call the taglib, I get this error:
JSPG0111E: Unable to open the tag library descriptor: Operation timed out: no further information
I was trying to figure out what could be timing out and my guess is that it is because the taglib is trying to access classes on a Sun server:
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
But our network has a firewall set up so there's not way for my localhost to access an external URI. What do I need to do to get this to work??? And why can't i find any documentation on this???
 
Ranch Hand
Posts: 117
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This : <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
should be refering to the URI you defined in the web.xml file (ie):
<taglib>
<taglib-uri>http://java.sun.com/jstl/core</taglib-uri>;
<taglib-location>/WEB-INF/tld/c.tld</taglib-location>
</taglib>
My guess is that WSAD is trying to actually resolve that URI as a URL, which points to nothing.
 
Rancher
Posts: 13459
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
"filbert"
Your name does not comply with the JavaRanch name policy.
Please edit your profile so that your display name is valid. Accounts with invalid display names get deleted.
Thanks,
Dave.
 
reply
    Bookmark Topic Watch Topic
  • New Topic