views:

44

answers:

1

Hi guys, 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 :)

A: 

You have the axiom jar containing the OMDataSource class in your deployment classpath?

Thorbjørn Ravn Andersen