Hi Lewis, I don't know if you've got this working yet, but: On Wed, Dec 29, 2010 at 2:04 PM, McGibbney, Lewis John <[email protected]> wrote: > Hello List, > > org.apache.jasper.JasperException: javax.servlet.ServletException: > java.lang.NoClassDefFoundError: Could not initialize class > com.hp.hpl.jena.ontology.OntModelSpec
simply means that jena.jar is not on the classpath for your servlet. You need all of the Jena jars in the /lib directory of your servlet's .war file. NoClassDefFoundError is not a Jena specific error, it's what the JVM says when it's asked to load a Java class that it cannot find on the classpath. Hth, Ian
