当前位置: 代码迷 >> Web前端 >> webservice施用
  详细解决方案

webservice施用

热度:283   发布时间:2012-11-10 10:48:50.0
webservice应用
public class HelloStubClient {
         public static void main(String[] args) throws Exception  
            {
                HelloServiceStub stub = new HelloServiceStub();
HelloServiceStub.SayHello hello= new HelloServiceStub.SayHello();
                hello.setArgs0("zhangjinping");
                System.out.println( stub.sayHello(hello).get_return());
           
            } 
}
  相关解决方案