Hi
I want to learn
java web services, I used Apache axis as follows:
I put a file called greeter.jws in C:\Tomcat 5.5\webapps\axis
-greeter.jws contains the following code:
public class greeter {
public
String greetme(String s){
return "How are you?������.."+s;
}
}
When I start the browser with the URL : 'http://localhost:8080/axis/greeter.jws'
I have got a link to the WSDL file
How can I use this service from a
JSP or
servlet client (java client)?
Best Regards