码迷,mamicode.com
首页 > Web开发 > 详细

webService —— soap

时间:2017-12-17 10:56:49      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:hello   log   div   publish   string   oca   blog   eth   mes   

package soupTest;

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

@WebService
public class Main {
	
	public static void main(String[] args) {
		System.out.println("server is running");
		String address = "http://localhost:9000/Main";
		Object implementor = new Main();
		Endpoint.publish(address, implementor);
		
	}
	@WebMethod
	public String sayHello(String str) {
		
		System.out.println("get message...");
		String result = "hello" + str;
		return result;
	}
}

 

webService —— soap

标签:hello   log   div   publish   string   oca   blog   eth   mes   

原文地址:http://www.cnblogs.com/Mr24/p/8048650.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!