• 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

jsp taglib API class files in Tomcat 4.0

 
Ranch Hand
Posts: 51
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
what jar represents taglib API java class files in Tomcat 4.0??
I am trying application using JSP tag lib API. The application not able to find JSP tag lib API?
can somebody help???.
Thanks in Advance
------------------
Jyothi
 
Ranch Hand
Posts: 3695
IntelliJ IDE Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
the jar representing the entire servlet 2.3 and jsp 2.2 API (which includes the taglib api) is under <CATALINA_HOME>/common/lib/servlet.jar

In your system's CLASSPATH (or your IDE's library path or CLASSPATH, or whatever it uses).. ensure there is not an older version of servlet.jar or even j2ee.jar to ensure you are getting the latest version of the taglib api.
 
jyothi ve
Ranch Hand
Posts: 51
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
mike,
I tried your suggetion but not able to find the JSP tag lib APIs.
My classpath contains:
<CATALINA-HOME>\common\lib\servlet.jar &
c:\jdk1.3\lib
I have servlet.jar in the jdk1.3\lib directory. But I didn't included
c:\jdk1.3\lib\servlet.jar in the class path.
Still my app not finding jsp tag lib APIS

 
Mike Curwen
Ranch Hand
Posts: 3695
IntelliJ IDE Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
When you say it's not finding the taglib library, what exactly is the error message you get? and what do you import statements look like?
 
jyothi ve
Ranch Hand
Posts: 51
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Mike,
Thanks. Its my mistake. My import statement having spelling mistake.
Thanks lot
-Jyothi
reply
    Bookmark Topic Watch Topic
  • New Topic