On Fri, Sep 25, 2009 at 6:30 PM, ANTHONY ENNIS <[email protected]> wrote: > I moved my classes under WEB-INF/classes and the application no longer > deploys. I get > > org.apache.axis2.deployment.DeploymentException: Processing Operations > Modules with an error of The following error occurred during schema > generation: java.lang.ClassNotFoundException: Class Not found : > com.company.snapshot.webservice.MyWebService >
Are you 100% sure that class "com.company.snapshot.webservice.MyWebService" is under WEB-INF/classes ? Try logging this in your class to make sure - make it static and reference it if need be so that its loaded and logs: this.getClass().getProtectionDomain().getCodeSource().getLocation()); You could try putting _only_ your MyWebService class in the aar, though that shouldn't be needed. What version of axis2 and servlet container are you using ? - R
