XMLRPC简介与java例子


基于XML-RPC协议的网页数据交换技术研究
根据XML-RPC协议实现网页数据的交换

(1)用Java实现基于SOAP的XML文档网络传输及远程过程调用(RPC)
http://java.ccidnet.com/art/3737/20030103/453959_1.html

http://ajava.org/opens/SOA/10117.html

(2) Apache XML-RPC - WEB服务/SOAP/SOA    Yahoo 新浪 365Key 天极 和讯 博拉 Live 奇客 鲜果 收客 饭否 叽歪 挖客
核心提示:Apache XML-RPC 是 一个 Java 语言对 XML-RPC 协议的封装。示例代码:import org.apache.xmlrpc.client.XmlRpcClient;import org.apache.xmlrpc.client.XmlRpcClientConfigImpl;XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl();config.setServ
Apache XML-RPC 是 一个 Java 语言对 XML-RPC 协议的封装。

示例代码:

import org.apache.xmlrpc.client.XmlRpcClient;import org.apache.xmlrpc.client.XmlRpcClientConfigImpl;XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl();config.setServerURL(new URL("http://127.0.0.1:8080/xmlrpc"));XmlRpcClient client = new XmlRpcClient();client.setConfig(config);Object[] params = new Object[]{new Integer(33), new Integer(9)};Integer result = (Integer) client.execute("Calculator.add", params);项目主页: http://ws.apache.org/xmlrpc/
文档地址:
下载地址: http://ws.apache.org/xmlrpc/download.html


(3)
http://www.iteye.com/topic/164914

(4)远程调用之XML-RPC


http://lovezhijun.iteye.com/blog/442156

你可能感兴趣的:(java,apache,xml,网络协议,SOA)