In src package, code the following java code in file Server:
package com;import javax.jws.WebService;import javax.jws.WebMethod;import javax.jws.WebParam;@WebService(serviceName = "Server")public class Server { /** * This is a sample web service operation */ @WebMethod(operationName = "hello") public String hello(@WebParam(name = "name") String txt) { return "Hello " + txt + " !"; } /** * Web service operation */ @WebMethod(operationName = "Sum") public int Sum(@WebParam(name = "a") int a, @WebParam(name = "b") int b) { ...