摘要: 首先认识两个缩写:SEI (Service Endpoint Interface) 服务提供的接口SIB (Service Implement Bean)实现类 1 IMyService.java // SEI 2 3 package having.service; 4 5 import javax.jws.WebService; 6 7 @WebService 8 9 public interface IMyService { 10 11 public int add(int a , int b); 12 13 public int minus(i... 阅读全文
posted @ 2014-03-10 15:09 Having 阅读(234) 评论(0) 推荐(0) 编辑