Deploiment web service + java
salut tout le monde je suis entrun de realiser un projet touchant les web service sous tomcat/axis la configuration de tomcat et de axis c bien passé sauf que dans le deploiment du service il me donne une erreur la voici
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
AXIS error
Sorry, something seems to have gone wrong... here are the details:
Fault - Could not find class for the service named: MyWebServiceHello
Hint: you may need to copy your class files/tree into the right location (which depends on the servlet system you are using).; nested exception is:
java.lang.ClassNotFoundException: MyWebServiceHello
AxisFault
faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
faultSubcode:
faultString: Could not find class for the service named: MyWebServiceHello
Hint: you may need to copy your class files/tree into the right location (which depends on the servlet system you are using).; nested exception is:
java.lang.ClassNotFoundException: MyWebServiceHello
faultActor:
faultNode:
faultDetail:
{http://xml.apache.org/axis/}hostname:devil |
le service il est codé en java et le voici :
Code:
1 2 3 4 5 6 7 8
|
public class MyWebServiceHello{
public String hello(String name){
return "Hello " + name;
}
} |
merci d'avance