首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

Java API公布Web Service步骤

2012-08-26 
Java API发布Web Service步骤1.定义服务接口?package com.test.soapimport javax.xml.ws.Endpointpublic

Java API发布Web Service步骤

1.定义服务接口

?

package com.test.soap;import javax.xml.ws.Endpoint;public class Server{    public static void main(String args[])    {        MessageReceiver implementor = new MessageReceiverImpl();        String address = "http://10.0.0.46:9000/messageReceiver";        Endpoint.publish(address, implementor);    }}

?4.在浏览器输入http://10.0.0.46:9000/messageReceiver?wsdl看到wsdl文档则发布成功。

热点排行