我创建了一个基本的 Web 服务。假设我的服务器类有一个名为“status”的变量,它的 SEI 包含一个方法“getUpdate”供客户端调用并获取状态?如何在客户端对此进行编码以调用 SEI 方法“getUpdate”?
如果我在客户端使用 port.Update 是什么意思,但我如何确定我指的是哪个服务器实例?
提前致谢。
SEI类:
package com.basic.ws;
import javax.jws.WebService;
@WebService(name = "Server_SEI", targetNamespace = "http://ws.basic.com/")
public interface Server_SEI {
public int sum(int x, int y);
public String getUpdate();
}
服务器类:
package com.basic.ws;
import javax.jws.WebService;
@WebService(targetNamespace = "http://ws.basic.com/", endpointInterface = "com.basic.ws.Server_SEI", portName = "ServerPort", serviceName = "ServerService")
public class Server implements Server_SEI{
String status = "OK";
public void setTrafficStatus(String status){
this.status = status;
}
public String getUpdate(){
return status;
}
}