由于很简单,所有就不贴图片啦
第一步 :创建webservice服务
import javax.xml.ws.Endpoint;
/**
* <p>
* Copyright: Copyright (c) 2017
* </p>
* <p>公司名称 : #############</p>
* <p>项目名称 TheService</p>
* <p>创建时间 : 2017-2-20 下午4:56:18 </p>
* <p>类描述 : </p>
* @version 1.0.0
* @author <a href=" ">dpica</a>
*/
@WebService
public class ServiceHello {
public String getName(String name){
return "我的账号名是"+name+"记住我吧";
}
public static void main(String[] args) {
Endpoint.publish("http://localhost:8080/Service/ServiceHello?wsdl", new ServiceHello());
System.out.println("启动成功");
}
}
第二步:运行 run as
第三步:访问 http://localhost:8080/Service/ServiceHello?wsdl
<definitions targetNamespace="http://service.wyb.com/" name="ServiceHelloService"><types><xsd:schema><xsd:import namespace="http://service.wyb.com/" schemaLocation="http://localhost:8080/Service/ServiceHello?xsd=1"/></xsd:schema></types><message name="getName"><part name="parameters" element="tns:getName"/></message><message name="getNameResponse"><part name="parameters" element="tns:getNameResponse"/></message><portType name="ServiceHello"><operation name="getName"><input wsam:Action="http://service.wyb.com/ServiceHello/getNameRequest" message="tns:getName"/><output wsam:Action="http://service.wyb.com/ServiceHello/getNameResponse" message="tns:getNameResponse"/></operation></portType><binding name="ServiceHelloPortBinding" type="tns:ServiceHello"><soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/><operation name="getName"><soap:operation soapAction=""/><input><soap:body use="literal"/></input><output><soap:body use="literal"/></output></operation></binding><service name="ServiceHelloService"><port name="ServiceHelloPort" binding="tns:ServiceHelloPortBinding"><soap:address location="http://localhost:8080/Service/ServiceHello"/></port></service></definitions>
第四步:创建客户端项目
第五步:命令行生成服务jar包
格式:wsimport -s “src目录” -p “生成类所在包名” -keep “wsdl发布地址”
wsimport -s "f:\\web\\src\\main\\java" -p “com.wyb.client” -keep “http://localhost:8080/Service/ServiceHello?wsdl”
第六步:刷新客户端项目
第七步 :创建测试类
package test;
import com.wyb.client.ServiceHello;
import com.wyb.client.ServiceHelloService;
/**
* <p>
* Copyright: Copyright (c) 2017
* </p>
* <p>公司名称 : ############ </p>
* <p>项目名称 TheClient1</p>
* <p>创建时间 : 2017-2-20 下午5:11:30 </p>
* <p>类描述 : </p>
* @version 1.0.0
* @author <a href=" ">dpica</a>
*/
public class ServiceTest {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
ServiceHello serviceHello=new ServiceHelloService().getServiceHelloPort();
String name= serviceHello.getName("dpica");
System.out.println(name);
}
}
第八步:运行客户端 run as ….