4、重新创建一个Web Service Project,创建成功后选择项目,new---->other----->Web Service Client,选择JAX-WS,然后点击Next,直到结束
完成后,在WebServiceClient中生成了如下的类
5、在WebServiceClient中创建print类,代码如下:
package com.text;
public class print {
public static void main(String[] args) {
Text text = new TextService().getTextPort();
String result = text.sayHello("World!!!!!!!!");
System.out.println(result);
}
}
6、运行print.java(Run As Java Application),可以看到控制台输出:Hello World!!!!!!!!,可见调用成功。