views:

110

answers:

1

I am trying to use JTidy on google app engine. In Eclipse, I add JTidy jar to the build path and add the jar again as the source attachment. When I make a tidy object it shows up as a org.w3c.tidy.Tidy. but when I run my app i get the error java.lang.NoClassDefFoundError: org/w3c/tidy/Tidy. Am I not adding the jar correctly? Does JTidy not work on google app engine?

+2  A: 

The JAR needs to be added to the lib folder in war/WEB-INF

Lumpy