• 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

Exception caught during processing 5 org.apache.struts.taglib.logic.CompareTagBase

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I got the following error while I try to compile my jsps.
I'm using IBM RAD 7.5 for development & WAS7 as my application server.
Please help to solve below.
Thanks in advance.
Laki

Translating /bill_reset_dda.jsp
Exception caught during processing 5 org.apache.struts.taglib.logic.CompareTagBase java.lang.NoClassDefFoundError: org.apache.struts.taglib.logic.CompareTagBase
at java.lang.ClassLoader.defineClassImpl(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:275)
at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:69)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:529)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:440)
......

I have <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic33"%> in the "bill_reset_dda.jsp".
Also struts-logic.tld located correctly inside WEB-INF.
 
Bartender
Posts: 9626
16
Mac OS X Linux Windows
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Welcome to the JavaRanch.
Are you trying to use CompareTagBase in your JSP? The documentation says that can't be done.
 
laki me
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Joe,
I have not directly used CompareTagBase.

Here is how I have used it.
public class EqualMultiple extends CompareTagBase {...}

The original problem I got was the jsp changes I did, does not reflect in deployed web application.
I'm using Websphere App Server v7 for deployment.

I tried to recompile the jsps in my application using IBM RAD 7.5.
I got this error only for few pages.

Thanks,
Laki
 
Joe Ess
Bartender
Posts: 9626
16
Mac OS X Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

laki me wrote:
Here is how I have used it.
public class EqualMultiple extends CompareTagBase {...}



It's always a good idea to include those details in your post. The better question you ask, the more help we can be. Have a look through our FAQ.
Do you have struts-taglib in your compile classpath?
 
laki me
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Joe,
Thanks for the reply.

Can you guide me on how to set "struts-taglib in compile classpath" in IBM RAD 7.5 please ?

Thanks,
Laki
 
Joe Ess
Bartender
Posts: 9626
16
Mac OS X Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm afraid I've never used it.
 
reply
    Bookmark Topic Watch Topic
  • New Topic