I am trying to integrate a Java Application into a J2EE proyect using a JSP and a Servlet. I run the proyect as Java Application (in Eclipse J2EE) and works perfectly, but I run the JSP in server and fails.
This is the bug report: java.lang.NoClassDefFoundError: org/apache/cxf/frontend/ClientProxy com.hp.io.soap.v1.IO_IOSoapServicePort_Client.setupConnection(IO_IOSoapServicePort_Client.java:85) com.hp.io.soap.v1.IO_IOSoapServicePort_Client.principal(IO_IOSoapServicePort_Client.java:34) com.hp.io.soap.v1.PruebaServlet.doGet(PruebaServlet.java:55) javax.servlet.http.HttpServlet.service(HttpServlet.java:621) javax.servlet.http.HttpServlet.service(HttpServlet.java:722) java.lang.ClassNotFoundException: org.apache.cxf.frontend.ClientProxy org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1676) org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1521) com.hp.io.soap.v1.IO_IOSoapServicePort_Client.setupConnection(IO_IOSoapServicePort_Client.java:85) com.hp.io.soap.v1.IO_IOSoapServicePort_Client.principal(IO_IOSoapServicePort_Client.java:34) com.hp.io.soap.v1.PruebaServlet.doGet(PruebaServlet.java:55) javax.servlet.http.HttpServlet.service(HttpServlet.java:621) javax.servlet.http.HttpServlet.service(HttpServlet.java:722) Thanks!