663
社区成员
发帖
与我相关
我的任务
分享/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package a;
import javax.jws.WebService;
import javax.jws.WebMethod;
import javax.jws.WebParam;
/**
*
* @author Administrator
*/
@WebService(serviceName = "test")
public class test {
/**
* Web 服务操作
*/
@WebMethod(operationName = "sayhellow")
public String sayhellow() {
//TODO write your implementation code here:
return "sayhellow";
}
}