代码改变世界

webservice

2017-04-07 10:56  绿贝  阅读(142)  评论(0编辑  收藏  举报

webservice发布类似这个样子:

package com.hyan.service;

import javax.jws.WebService;
import javax.xml.ws.Endpoint;

@WebService
public class ServiceHello {

    /**
     * @param args
     */
    public static void main(String[] args) {
        Endpoint.publish("http://localhost:9012/Service/ServiceHello", new ServiceHello());
        System.out.println("service success");
    }
    
    public String getValue(String name){
        return "来了"+name;
    }

}

 

 

webservice客户端推荐用  SoapUI工具来模拟发送webservice请求,

类似这个样子