Help coderanch get a
new server
by contributing to the fundraiser
  • 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
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

problem with custom tag

 
Ranch Hand
Posts: 34
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey to all Problem Solver,
I have developed one small jsp/servlet web application with my own custom tags. The whole program module works in my system. When I deployed the same module in remote another tomcat server, it didn't work. When I tried to access my index.jsp page: tomcat gave error like:
org.apache.jasper.JasperException: File "/WEB-INF/tlds/goldtld.tld" not found.
What might be the reason that same program runs in one machine and does not run in another machine.
Please help me as soon as possible. I am in urgent need.

Thanks in advance.
 
Sheriff
Posts: 67750
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Krishna Acharya:
Please help me as soon as possible. I am in urgent need.


Please read this.
 
Bear Bibeault
Sheriff
Posts: 67750
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Things to check:

1) Be sure that a unique URI is decalred in the tld.

2) Be sure that the declarations on the JSPs match this URI.

3) Be sure that you do not have anything in the web.xml declaring the tld.
 
reply
    Bookmark Topic Watch Topic
  • New Topic