如何写一个webservice 和消费webservice

@WebService(serviceName = "TestWsService",
        targetNamespace = "http://xxxxxx.com/",
        endpointInterface = "xxxxxxx")
public class TestWsServiceImpl implements TestWsService {
    @Override
    @DbLog(code = "test", name = "测试ws接口")
    public String test(String param) {

        System.out.println("入参:"+param);
        return  param;
    }
}

 

@WebService(name = "TestWsService",
        targetNamespace = "http:xxxx.com")
public interface TestWsService {
    /**
     * 保存物料信息
     * @return
     */
    @WebMethod
    String test(String param);

}
消费webservice 
// 创建客户端
JaxWsDynamicClientFactory dcf = JaxWsDynamicClientFactory.newInstance();
Client client = dcf.createClient("http://localhost:8080/except/webService/test?wsdl");
// 需要密码的情况需要加上用户名和密码
// client.getOutInterceptors().add(new ClientLoginInterceptor(USER_NAME,
// PASS_WORD));
Object[] objects = new Object[0];
try {
  // invoke("方法名",参数1,参数2,参数3....);
  objects = client.invoke("test", "hahhha");
  return "返回数据:" + objects[0];
} catch (java.lang.Exception e) {
  e.printStackTrace();
  return "异常:" + e.getMessage();
}

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值