• 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

unable to find jar

 
Ranch Hand
Posts: 140
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi

i am compiling jsps in jdeveloper9.0.3;

<%@ taglib uri="/WEB-INF/lib/DynamicTable.jar" prefix="html" %>

in DynamicTable.jar,we r writing tag handler class and tld etc;but when i compile the jsp it is not able to find this jar file;i put the jar file in libraries and additional classpath in the project settings;i put this jar files in the particular context;but still i am getting same error;

Error(37): Unable to load taghandler class: /WEB-INF/lib/DynamicTable.jar;

why it is not detecting?
 
author & internet detective
Posts: 41860
908
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Kesava,
The uri needs to be a .tld file, not a .jar file.
 
kesava chaitanya
Ranch Hand
Posts: 140
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Jeanne Boyarsky:
Kesava,
The uri needs to be a .tld file, not a .jar file.




<%@ page import = "java.util.ArrayList,<br /> com.foursoft.etrans.common.ejb.sls.ETUtilitiesSessionHome,<br /> com.foursoft.etrans.common.ejb.sls.ETUtilitiesSession,<br /> com.foursoft.etrans.setup.customercontract.java.TariffSearchModel,<br /> com.foursoft.esupply.common.java.ReportFormatter,<br /> com.foursoft.esupply.common.util.EJBHomeFactory"<br /> %>
<jsp:useBean id="loginbean" class="com.foursoft.esupply.common.bean.ESupplyGlobalParameters" scope="session"/>
<%!<br /> private static final String FILE_NAME = "ETQuotesLOV.jsp";<br /> %>
<%@ taglib uri="/WEB-INF/lib/PageTracker.jar" prefix="fs" %>


in our jsp we r giving like this;when i compile this jsp thru jdeveloper ;it is not able to compile?
 
Jeanne Boyarsky
author & internet detective
Posts: 41860
908
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm not really sure how this differs from the first post. You still need a tld.
 
reply
    Bookmark Topic Watch Topic
  • New Topic