`
shake863
  • 浏览: 638592 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

XML-RPC入门

阅读更多

一、什么是XML-RPC


xml-rpc 是一套允许运行在不同操作系统、不同环境的程序实现基于internet过程调用的规范和一系列的实现。
这种远程过程调用使用http作为传输协议,xml作为传送信息的编码格式。Xml-Rpc的定义尽可能的保持了简单,但同时能够传送、处理、返回复杂的数据结构。
Xml-rpc是工作在internet上的远程过程调用协议。一个xml-rpc消息就是一个请求体为xml的http-post请求,被调用的方法在服务器端执行并将执行结果以xml格式编码后返回。
  1. Request example 
  2. Here's an example of an XML-RPC request: 
  3. POST /RPC2 HTTP1.0
  4. User-Agent: Frontier5.1.2 (WinNT)
  5. Host: betty.userland.com
  6. Content-Type: textxml
  7. Content-length: 181
  8.  
  9.  
  10. <?xml version="1.0"?>
  11. <methodCall>
  12.    <methodName>examples.getStateName</methodName>
  13.    <params>
  14.       <param>
  15.          <value><i4>41</i4></value>
  16.          </param>
  17.       </params>
  18.    </methodCall>
  1. Response example 
  2. Here's an example of a response to an XML-RPC request: 
  3. HTTP1.1 200 OK
  4. Connection: close
  5. Content-Length: 158
  6. Content-Type: textxml
  7. Date: Fri, 17 Jul 1998 19:55:08 GMT
  8. Server: UserLand Frontier5.1.2-WinNT
  9.  
  10.  
  11. <?xml version="1.0"?>
  12. <methodResponse>
  13.    <params>
  14.       <param>
  15.          <value><string>South Dakota</string></value>
  16.          </param>
  17.       </params>
  18.    </methodResponse>

二、xml-rpc入门程序


以下的入门程序包括一个管理器(HelloHandler)、一个服务器(HelloServer)、一个客户程序(HelloClient)。
首先要做的是创建用于远程过程调用的类和方法,人们常常称之为管理器。Xml-rpc管理器是一个方法和方法集,它接受xml-rpc请求,并对请求的内容进行解码,再向一个类和方法发出请求。
//管理器类
  1. package xmlRpc;
  2.  
  3. /**
  4.  * @author trier
  5.  *
  6.  * <b><code>HelloHandler</code></b> is a simple handler than can 
  7.  *  be registered with an XML-RPC server
  8.  */
  9. public class HelloHandler {
  10.     public String sayHello(String name){
  11.         return "Hello " + name;
  12.     }
  13. }
服务器程序将创建的管理器注册到服务器上,并为服务器指明应用程序其他特定的参数。
//服务器类
  1. package xmlRpc;
  2.  
  3. /**
  4.  *
  5.  * <b><code>HelloServer</code></b> is a simple XML-RPC server
  6.  * that will take the <code>HelloHandler</code> class available
  7.  * for XML-PRC calls.
  8.  * 
  9.  */
  10. import org.apache.xmlrpc.WebServer;
  11. import org.apache.xmlrpc.XmlRpc;
  12. import java.io.IOException;
  13.  
  14. public class HelloServer {
  15.     public static void main(String[] args){
  16.         if(args.length<1){
  17.             System.out.println("Usage: java HelloServer [port]");
  18.             System.exit(-1);
  19.         }
  20.         try{
  21.             XmlRpc.setDriver("org.apache.xerces.parsers.SAXParser");
  22.             //start the server
  23.             System.out.println("Starting XML-RPC Server......");
  24.             WebServer server = new WebServer(Integer.parseInt(args[0]));
  25.             //register our handler class
  26.             server.addHandler("hello",new HelloHandler());
  27.             System.out.println("Now accepting requests......");
  28.         }catch(ClassNotFoundException e){
  29.             System.out.println("Could not locate SAX Driver");
  30.         }catch(IOException e){
  31.             System.out.println("Could not start server: "+e.getMessage());
  32.         }
  33.     }
  34. }
//客户程序
  1. package xmlRpc;
  2.  
  3. /**
  4. *
  5.   * <b><code>HelloClient</code></b> is a simple XML-RPC client
  6.  * that makes an XML-RPC request to <code>HelloServer</code>
  7.  */
  8. import java.io.IOException;
  9. import java.util.Vector;
  10.  
  11. import org.apache.xmlrpc.XmlRpc;
  12. import org.apache.xmlrpc.XmlRpcClient;
  13. import java.net.MalformedURLException;
  14. import org.apache.xmlrpc.XmlRpcException;
  15.  
  16. public class HelloClient {
  17.     public static void main(String[] args){
  18.         if(args.length<1){
  19.             System.out.println("Usage: java HelloClient [your name]");
  20.             System.exit(-1);
  21.         }
  22.         try{
  23.             //Use the Apache Xereces SAX Driver
  24.             XmlRpc.setDriver("org.apache.xerces.parsers.SAXParser");
  25.             
  26.             //Specify the server
  27.             XmlRpcClient client = new XmlRpcClient("http://localhost:8585");
  28.             
  29.             //create request
  30.             Vector params = new Vector();
  31.             params.addElement(args[0]);
  32.             
  33.             //make a request and print the result
  34.             String result = (String)client.execute("hello.sayHello",params);
  35.             System.out.println("Response from server: "+ result);
  36.         }catch(ClassNotFoundException e){
  37.             System.out.println("Could not locate SAX Driver");
  38.         }catch(MalformedURLException e){
  39.             System.out.println("Incorrect URL fro xml-rpc server foramt:"+e.getMessage());
  40.         }catch(XmlRpcException e){
  41.             System.out.println("XmlRpcException :"+e.getMessage());    
  42.         }catch(IOException e){
  43.             System.out.println("IOException:"+e.getMessage());
  44.         }
  45.     }
  46. }

三、RPC和RMI的简单比较


在RMI和RPC之间最主要的区别在于方法是如何别调用的。在RMI中,远程接口使每个远程方法都具有方法签名。如果一个方法在服务器上执行,但是没有相匹配的签名被添加到这个远程接口上,那么这个新方法就不能被RMI客户方所调用。在RPC中,当一个请求到达RPC服务器时,这个请求就包含了一个参数集和一个文本值,通常形成“classname.methodname”的形式。这就向RPC服务器表明,被请求的方法在为“classname”的类中,名叫“methodname”。然后RPC服务器就去搜索与之相匹配的类和方法,并把它作为那种方法参数类型的输入。这里的参数类型是与RPC请求中的类型是匹配的。一旦匹配成功,这个方法就被调用了,其结果被编码后返回客户方。

trier 整理:
参考资料:
    http://www.xmlrpc.com/
    《java&xml》O'Reilly
 
分享到:
评论

相关推荐

    Apache xml-rpc入门

    Apache xml-rpc入门详细的描述xmlrpc的开发过程,并带有例子。

    Apache xml-rpc入门 sevlet服务及启动服务器线程

    NULL 博文链接:https://navylee.iteye.com/blog/723578

    PHP中使用XML-RPC构造Web-Service简单入门.doc

    PHP中使用XML-RPC构造Web-Service简单入门.doc

    PHP中使用XML-RPC构造Web_Service简单入门.doc

    PHP中使用XML-RPC构造Web_Service简单入门.doc

    grav.client:用于Gravatar XML-RPC API的NodeJS SDK

    如果您只是入门,请务必参阅和。 安装 $ npm install grav.client 测验 # unit tests $ npm run test # end-to-end tests $ npm run test:e2e # test coverage $ npm run test:cov # acceptance tests $ npm run ...

    jmeter图文入门教程.pdf

    站点的Web1.0的Web 2.0 (ajax, flex and flex-ws-amf) Web Services: SOAP / XML-RPC 通过JDBC驱动程序的数据库 ⽬录: LDAP ⾯向消息的服务通过JMS Service: POP3, IMAP, SMTP FTP 服务 等等其他协议

    java rest api入门实例

    目前在三种主流的Web服务实现方案中,因为REST模式的Web服务与复杂的SOAP和XML-RPC对比来讲明显的更加简洁,越来越多的web服务开始采用REST风格设计和实现。例如,Amazon.com提供接近REST风格的Web服务进行图书查找...

    Python编程入门经典

    20.9.6 基于XML-RPC Web服务 的wiki搜索和替换 440 20.10 SOAP 442 20.10.1 SOAP快速入门 442 20.10.2 SOAP请求 443 20.10.3 SOAP响应 444 20.10.4 错误处理机制 444 20.10.5 展示一个BittyWiki的 SOAP接口 445 ...

    《Python基础教程》随书源码(第2版)

    代码中既包含对Python中基础知识如字符串函数、字典、类和对象、迭代器、异常的简单使用,也包括10个基于Python的项目代码,包括及时标记、绘画、XML操作、即时通信、CGI远程、BBS、XML-RPC文件共享、基于GUI的文件...

    单点登录源码

    | ├── zheng-upms-rpc-api -- rpc接口包 | ├── zheng-upms-rpc-service -- rpc服务提供者 | └── zheng-upms-server -- 用户权限系统及SSO服务端[端口:1111] ├── zheng-cms -- 内容管理系统 | ├── ...

    Swift-PHP:Swift PHP是PHP5的微型框架,提供了轻量级且易于使用的组件来开发Web应用程序

    发送XML-RPC Ping 支持Google API MySQL数据库管理 入门 安装Swift PHP 下载Swift PHP Framework,并将其解压缩到您的根目录中。 设置.htaccess 确保“ .htaccess”和“ index.php”文件位于同一公共目录中。 ...

    grpc-java:Java gRPC实现。 基于HTTP2的RPC

    gRPC-Java-RPC库和框架 gRPC-Java与JDK 7一起使用。Android API级别16及更高版本(Jelly Bean及更高版本)支持gRPC-Java客户端。 不支持在Android设备上部署gRPC服务器。 TLS使用通常需要使用Java 8或Android上的...

    Python基础教程(第2版.修订版)

    Python基础教程(第2版....第27章 项目8:使用XML-RPC进行文件共享 第28章 项目9:文件共享2——GUI版本 第29章 项目10:DIY街机游戏 附录A 简明版本 附录B Python参考手册 附录C 在线资源 附录D Python 3.0

    PHP5 完整官方 中文教程

    XML-RPC — XML-RPC 函数 XMLReader — XMLReader functions XMLWriter — XMLWriter Functions XSL — XSL functions XSLT — XSLT Functions YAZ — YAZ Functions YP/NIS — YP/NIS Functions Zip — Zip File ...

    PHP5中文参考手册

    XML-RPC — XML-RPC 函数 XMLReader — XMLReader functions XMLWriter — XMLWriter Functions XSL — XSL functions XSLT — XSLT Functions YAZ — YAZ Functions YP/NIS — YP/NIS Functions Zip — Zip File ...

    php手册.chm,php手册

    XML-RPC 函数 CLVIII. XMLReader functions CLIX. XSL functions CLX. XSLT Functions CLXI. YAZ Functions CLXII. YP/NIS Functions CLXIII. Zip File Functions (Read Only Access) CLXIV. Zlib Compression ...

    php帮助文档,php。chm,php必备的中文手册

    XML-RPC 函数 CLXIV. XMLReader functions CLXV. XSL functions CLXVI. XSLT Functions CLXVII. YAZ Functions CLXVIII. YP/NIS Functions CLXIX. Zip File Functions (Read Only Access) CLXX. Zlib Compression ...

    harmonyos2-harmonyj:和谐JavaSDK

    JSON-RPC 客户端 API 通过 HTTP 的部分实现,具有功能 本地密钥管理 帐户和获得平衡 创建、签署和发送交易 依赖关系 Java 8 和 Gradle 5.6.4 入门 首先,最好安装最新的 JDK 和 Gradle。 安装 将以下 Maven 依赖项...

    PHP手册(带评论版-2008-03-14).part2.rar

    XML-RPC 函数 CLVIII. XMLReader functions CLIX. XSL functions CLX. XSLT Functions CLXI. YAZ Functions CLXII. YP/NIS Functions CLXIII. Zip File Functions (Read Only Access) CLXIV. Zlib Compression ...

Global site tag (gtag.js) - Google Analytics