• 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

****** How to use JSP Taglibraries ???

 
Greenhorn
Posts: 28
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
HI,
I have configured Weblogic server as the Webserver and am using Jsp1.1 container of weblogic for serving JSP's.
I want to create custom tags of my own for my JSP's.
To do this I have to create a java file which imports javax.servlet.jsp.tagext.*;
Iam using Visualcafe for compiling Java files. Iam not able to find the jar file which contains "javax.servlet.jsp.tagext.*;"
class. I searched the whole sun site. But I don't know where to get the jar file for this package.
Could anybody help me out in this ...
Regards
Mahesh
 
Ranch Hand
Posts: 92
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I used Weblogic 5.1, which has the correct api for tag lib. I am not sure which version you are using. You should unjar weblogicaux.jar to see whether javax.servlet.jsp.tagext is there or not. If not, you should either download servlet or tomcat, and place servlet.jar at somewhere, and add the path to weblogic configuration file.
 
Mahesh Eshwarappa
Greenhorn
Posts: 28
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
Thanx a lot for the help.
I found the weblogicaux.jar file .
I was searching on the web with resource in my hand.
Mahesh
 
Author and all-around good cowpoke
Posts: 13078
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The website for the Orion server has a good tutorial and free set of example custom tags.
http://www.orionserver.com/
Bill
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic