Copy1-Worksheet - 1 Wss
Copy1-Worksheet - 1 Wss
2. CODE:
package webs.com;
import javax.jws.WebService;
import javax.jws.WebMethod;
import javax.jws.WebParam;
@WebService(serviceName = "NewWebService")
public class NewWebService {
@WebMethod(operationName = "hello")
public String hello(@WebParam(name = "name") String txt) {
return "Hello " + txt + " !";
}
}
OUTPUT :
Learning outcomes (What I have learnt):
1. I learned how to printout using WSDL i.e. Web Service Description Language.
Evaluation Grid (To be created as per the SOP and Assessment guidelines by the faculty):