a codejava.lang.ClassNotFoundException: eu.myproject.myComponent.myService
is generated when the class is not found.

you are using :

C:\axis2-1.2\axis2-1.2\bin>java2wsdl -of myService.wsdl -cn eu.myproject.
myComponent.myService


which describe that you class myService is in the folder
C:\axis2-1.2\axis2-1.2\bin\eu\myproject\myComponent.

are you sure that you pu the class in this folder ?
if not, you have to explain where is you class, like :


C:\axis2-1.2\axis2-1.2\bin>java2wsdl -of myService.wsdl -cn
yourparentclassdirectory\myService


like : if my class is located here :  c:\myproject\myClass.class

C:\axis2-1.2\axis2-1.2\bin>java2wsdl -of myService.wsdl -cn
c:\myproject\myClass


does it work?

Reply via email to