You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@axis.apache.org by PANTA-RHEI GREEN <PA...@DIN.DE> on 2004/11/23 14:43:07 UTC

NoClassDefFoundError with axis 1.1 and Jboss 3.2.5

Hi, 

our prob is: We want to make an soap call (with axis 1.1) from an EJB (stateless session bean) hosted on jboss 3.2.5 to an third party web-service. Java runtime version is: 1.4.2.06. 
Every works fine in a standalone environment (without jboss and EJBs). 

If we integrate the axis-generated stub classes to our archive, we get following error during the deployment process: 

INFO [main] (EJBDeployer.java:572) - Deployed: file:/C:/devel/jboss-3.2.5/server/default/tmp/deploy/tmp1456806-webshop.ear-content 
INFO [main] (EARDeployer.java:287) - Started J2EE application: file:/C:/devel/jboss-3.2.5/server/default/deploy/06-webshop.ear 
INFO [main] (EARDeployer.java:113) - Init J2EE application: file:/C:/devel/jboss-3.2.5/server/default/deploy/07-emarketing.ear 
WARN [main] (EJBDeployer.java:508) - Verify failed; continuing 
java.lang.NoClassDefFoundError: de/test/clients/axis/stubs/TestServiceSoapBindingStub 
at java.lang.Class.getDeclaredMethods0(Native Method) 
at java.lang.Class.privateGetDeclaredMethods(Class.java:1655) 
at java.lang.Class.privateGetPublicMethods(Class.java:1778) 
at java.lang.Class.getMethods(Class.java:832) 
at org.jboss.verifier.strategy.AbstractVerifier.hasEJBCreateMethod(AbstractVerifier.java:688) 
at org.jboss.verifier.strategy.EJBVerifier20.verifySessionBean(EJBVerifier20.java:1037) 
at org.jboss.verifier.strategy.EJBVerifier20.checkSession(EJBVerifier20.java:92) 
at org.jboss.verifier.BeanVerifier.verify(BeanVerifier.java:159) 
at org.jboss.ejb.EJBDeployer.create(EJBDeployer.java:501) 
at org.jboss.deployment.MainDeployer.create(MainDeployer.java:790) 
at org.jboss.deployment.MainDeployer.create(MainDeployer.java:782) 
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:644) 
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:608) 
at sun.reflect.GeneratedMethodAccessor14.invoke(Unknown Source) 
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) 
at java.lang.reflect.Method.invoke(Method.java:324) 
at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:60) 
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:61) 
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:53) 
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86) 
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:185) 
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473) 
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176) 
at $Proxy7.deploy(Unknown Source) 
at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:304) 
at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:478) 
at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:201) 
at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:274) 
at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:271) 
at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:221) 
at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source) 
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) 
at java.lang.reflect.Method.invoke(Method.java:324) 
at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:60) 
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:61) 
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:53) 
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86) 
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:185) 
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473) 
at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController..java:837) 
at $Proxy0.start(Unknown Source) 
at org.jboss.system.ServiceController.start(ServiceController.java:367) 
at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source) 
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) 

Problem seems the classloader from jboss. 

We have intgerate the axis jars to server/deploy/lib and included it to the EAR from the EJB. 

Second attempt to make the soap-call from an servlet in jboss produce the same error (exception during load at runtime in the servlet occours !!!) 

Anyone have an idea to solve the problem ? 

thx 
green

Re: NoClassDefFoundError with axis 1.1 and Jboss 3.2.5

Posted by "matthew.hawthorne" <ma...@apache.org>.
PANTA-RHEI GREEN wrote:
  > If we integrate the axis-generated stub classes to our archive, we 
get following error during the deployment process:
> 
> INFO [main] (EJBDeployer.java:572) - Deployed: file:/C:/devel/jboss-3.2.5/server/default/tmp/deploy/tmp1456806-webshop.ear-content 
> INFO [main] (EARDeployer.java:287) - Started J2EE application: file:/C:/devel/jboss-3.2.5/server/default/deploy/06-webshop.ear 
> INFO [main] (EARDeployer.java:113) - Init J2EE application: file:/C:/devel/jboss-3.2.5/server/default/deploy/07-emarketing.ear 
> WARN [main] (EJBDeployer.java:508) - Verify failed; continuing 
> java.lang.NoClassDefFoundError: de/test/clients/axis/stubs/TestServiceSoapBindingStub 
> at java.lang.Class.getDeclaredMethods0(Native Method) 
> 
> Problem seems the classloader from jboss. 
> 
> We have intgerate the axis jars to server/deploy/lib and included it to the EAR from the EJB. 
> 
> Second attempt to make the soap-call from an servlet in jboss produce the same error (exception during load at runtime in the servlet occours !!!) 
> 
> Anyone have an idea to solve the problem ? 

If you're deploying the EJB inside of an ear file, be sure that the Axis 
generated classes are in a jar inside of the ear, and that the EJB jar's 
manifest file puts the jar in it's classpath.

You may need to experiment a bit.