
package net.oseye;
import javax.jws.WebMethod;
import javax.jws.WebService;
@WebService
public class Hello {
@WebMethod
public String SayHello(String name){
return String.format("Hello,%s",name);
}
}//源代码片段来自云代码http://yuncode.net
wsgen -cp ./bin -r ./wsdl -s ./src -d ./bin -wsdl net.oseye.Hello//源代码片段来自云代码http://yuncode.net



