I am generating a webservice stubusing this statement in java
new TPFServiceStub(webserviceUrl);
I have created a mock service in soap UI at 8088. The same URL I am passing in the webserviceUrl variable. All the dependent jars are placed in axis_home. I am getting this following error.
Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/axiom/om/OMDataSource
at com.arcot.csso.credchangereportsvc.dao.CIWebserviceDAO.getServiceObject
Can you please help me out :)
NoClassDefFoundErroris always a classpath issue. Make sure you have the library that contains classorg.apache.axiom.om.OMDataSourcein the classpath on the side where the error occurs. – Jesper Aug 15 '10 at 20:44