According to this line in your WSDL:

targetNamespace='http://echo/'

the web service class is in a package named echo, and according to this line:

<portType name='Echo'>

the simple class name is Echo, which makes the full class name echo.Echo. 
Therefore, you must have an echo.Echo class in the WAR file for your web 
service. Apparently, you don't:

Caused by: java.lang.ClassNotFoundException: echo.Echo

(Hint: always look for the initial exception - with nested exceptions look for 
'caused by')


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4171383#4171383

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4171383
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to