I am new to using the Jersey framework and developing a web service. I am using Weblogic v 10 as the app server for an existing project and trying to start off using a simple HelloWorld sample. Unfortunately at run time I get a java.lang.NoClassDefFoundError on com/sun/jersey/core/reflection/ReflectionHelper at com.sun.jersey.spi.container.servlet.WebComponent.createResourceConfig I have tried using multiple versions of the Jersy .jar files (1.1.4.1 and 1.1.5.1 and 1.3) but the result is the same. I am building and running this using Java 1.5
The .jar file containing the HelloWorld class is properly loaded into my deployment WEB-INF\classes folder. As for the web.xml file it only contains the servlet-class setting for the Jersey which is found but then invokes the WebComponent class to perform initialization and when that module attempts to createResourceConfig the error is received. The classpath has been checked and appears correct. Any insight would be appreciated.