测试

来源:互联网 发布:怎么开放端口号 编辑:程序博客网 时间:2024/05/16 13:40
package com.test;import javax.xml.ws.Endpoint;import com.hello.HelloWsImpl;import com.hello.HelloWsImplService;public class HelloWsTest {public static void main(String[] args) {//Endpoint.publish("http://localhost:8989/webService", new HelloWsImpl());HelloWsImplService hwis = new HelloWsImplService();HelloWsImpl hwi = hwis.getHelloWsImplPort();System.out.println(hwi.hello("张三"));}}

0 0