hi ranchers,
I am so new to webservices . I have created an interface and the corresponding class file which implements this interface . Now i have to create the wsdl file ; the deploy and undeploy wsdd files but how do i create them . I googled, but most of the them use
ant to do it which too i do not know much .
I am pasting the code down here ; its a simple hello World code . help me please ...
---------------------------------------------------------------
package webservice;
public interface HelloWorldService {
public
String sayHelloTo(String userName);
}
------------------------------------------------------------------
package webservice;
public class HelloWorldServiceImpl implements HelloWorldService {
public String sayHelloTo(String userName) {
//message
String hello = "Hello " + userName + ". You are being watched";
System.out.println(hello);
//return the message
return hello;
}
}