PHP 8.2.31
Preview: xmlrpc.rb Size: 8.49 KB
//proc/thread-self/root/opt/alt/ruby22/lib64/ruby/2.2.0/xmlrpc.rb

# == Author and Copyright
#
# Copyright (C) 2001-2004 by Michael Neumann (mailto:mneumann@ntecs.de)
#
# Released under the same term of license as Ruby.
#
# == Overview
#
# XMLRPC is a lightweight protocol that enables remote procedure calls over
# HTTP.  It is defined at http://www.xmlrpc.com.
#
# XMLRPC allows you to create simple distributed computing solutions that span
# computer languages.  Its distinctive feature is its simplicity compared to
# other approaches like SOAP and CORBA.
#
# The Ruby standard library package 'xmlrpc' enables you to create a server that
# implements remote procedures and a client that calls them.  Very little code
# is required to achieve either of these.
#
# == Example
#
# Try the following code.  It calls a standard demonstration remote procedure.
#
#   require 'xmlrpc/client'
#   require 'pp'
#
#   server = XMLRPC::Client.new2("http://xmlrpc-c.sourceforge.net/api/sample.php")
#   result = server.call("sample.sumAndDifference", 5, 3)
#   pp result
#
# == Documentation
#
# See http://www.ntecs.de/ruby/xmlrpc4r/.  There is plenty of detail there to
# use the client and implement a server.
#
# == Features of XMLRPC for Ruby
#
# * Extensions
#   * Introspection
#   * multiCall
#   * optionally nil values and integers larger than 32 Bit
#
# * Server
#   * Standalone XML-RPC server
#   * CGI-based (works with FastCGI)
#   * Apache mod_ruby server
#   * WEBrick servlet
#
# * Client
#   * synchronous/asynchronous calls
#   * Basic HTTP-401 Authentication
#   * HTTPS protocol (SSL)
#
# * Parsers
#   * NQXML (XMLParser::NQXMLStreamParser, XMLParser::NQXMLTreeParser)
#   * Expat (XMLParser::XMLStreamParser, XMLParser::XMLTreeParser)
#   * REXML (XMLParser::REXMLStreamParser)
#   * xml-scan (XMLParser::XMLScanStreamParser)
#   * Fastest parser is Expat's XMLParser::XMLStreamParser!
#
# * General
#   * possible to choose between XMLParser module (Expat wrapper) and REXML/NQXML (pure Ruby) parsers
#   * Marshalling Ruby objects to Hashs and reconstruct them later from a Hash
#   * SandStorm component architecture XMLRPC::Client interface
#
# == Howto
#
# === Client
#
#   require "xmlrpc/client"
#
#   # Make an object to represent the XML-RPC server.
#   server = XMLRPC::Client.new( "xmlrpc-c.sourceforge.net", "/api/sample.php")
#
#   # Call the remote server and get our result
#   result = server.call("sample.sumAndDifference", 5, 3)
#
#   sum = result["sum"]
#   difference = result["difference"]
#
#   puts "Sum: #{sum}, Difference: #{difference}"
#
# === XMLRPC::Client with XML-RPC fault-structure handling
#
# There are two possible ways, of handling a fault-structure:
#
# ==== by catching a XMLRPC::FaultException exception
#
#   require "xmlrpc/client"
#
#   # Make an object to represent the XML-RPC server.
#   server = XMLRPC::Client.new( "xmlrpc-c.sourceforge.net", "/api/sample.php")
#
#   begin
#     # Call the remote server and get our result
#     result = server.call("sample.sumAndDifference", 5, 3)
#
#     sum = result["sum"]
#     difference = result["difference"]
#
#     puts "Sum: #{sum}, Difference: #{difference}"
#
#   rescue XMLRPC::FaultException => e
#     puts "Error: "
#     puts e.faultCode
#     puts e.faultString
#   end
#
# ==== by calling "call2" which returns a boolean
#
#   require "xmlrpc/client"
#
#   # Make an object to represent the XML-RPC server.
#   server = XMLRPC::Client.new( "xmlrpc-c.sourceforge.net", "/api/sample.php")
#
#   # Call the remote server and get our result
#   ok, result = server.call2("sample.sumAndDifference", 5, 3)
#
#   if ok
#     sum = result["sum"]
#     difference = result["difference"]
#
#     puts "Sum: #{sum}, Difference: #{difference}"
#   else
#     puts "Error: "
#     puts result.faultCode
#     puts result.faultString
#   end
#
# === Using XMLRPC::Client::Proxy
#
# You can create a Proxy object onto which you can call methods. This way it
# looks nicer. Both forms, _call_ and _call2_ are supported through _proxy_ and
# _proxy2_.  You can additionally give arguments to the Proxy, which will be
# given to each XML-RPC call using that Proxy.
#
#   require "xmlrpc/client"
#
#   # Make an object to represent the XML-RPC server.
#   server = XMLRPC::Client.new( "xmlrpc-c.sourceforge.net", "/api/sample.php")
#
#   # Create a Proxy object
#   sample = server.proxy("sample")
#
#   # Call the remote server and get our result
#   result = sample.sumAndDifference(5,3)
#
#   sum = result["sum"]
#   difference = result["difference"]
#
#   puts "Sum: #{sum}, Difference: #{difference}"
#
# === CGI-based server using XMLRPC::CGIServer
#
# There are also two ways to define handler, the first is
# like C/PHP, the second like Java, of course both ways
# can be mixed:
#
# ==== C/PHP-like (handler functions)
#
#   require "xmlrpc/server"
#
#   s = XMLRPC::CGIServer.new
#
#   s.add_handler("sample.sumAndDifference") do |a,b|
#     { "sum" => a + b, "difference" => a - b }
#   end
#
#   s.serve
#
# ==== Java-like (handler classes)
#
#   require "xmlrpc/server"
#
#   s = XMLRPC::CGIServer.new
#
#   class MyHandler
#     def sumAndDifference(a, b)
#       { "sum" => a + b, "difference" => a - b }
#     end
#   end
#
#   # NOTE: Security Hole (read below)!!!
#   s.add_handler("sample", MyHandler.new)
#   s.serve
#
#
# To return a fault-structure you have to raise an XMLRPC::FaultException e.g.:
#
#   raise XMLRPC::FaultException.new(3, "division by Zero")
#
# ===== Security Note
#
# From Brian Candler:
#
#   Above code sample has an extremely nasty security hole, in that you can now call
#   any method of 'MyHandler' remotely, including methods inherited from Object
#   and Kernel! For example, in the client code, you can use
#
#     puts server.call("sample.send","`","ls")
#
#   (backtick being the method name for running system processes). Needless to
#   say, 'ls' can be replaced with something else.
#
#   The version which binds proc objects (or the version presented below in the next section)
#   doesn't have this problem, but people may be tempted to use the second version because it's
#   so nice and 'Rubyesque'. I think it needs a big red disclaimer.
#
#
# From Michael:
#
# A solution is to undef insecure methods or to use
# XMLRPC::Service::PublicInstanceMethodsInterface as shown below:
#
#   class MyHandler
#     def sumAndDifference(a, b)
#       { "sum" => a + b, "difference" => a - b }
#     end
#   end
#
#   # ... server initialization ...
#
#   s.add_handler(XMLRPC::iPIMethods("sample"), MyHandler.new)
#
#   # ...
#
# This adds only public instance methods explicitly declared in class MyHandler
# (and not those inherited from any other class).
#
# ==== With interface declarations
#
# Code sample from the book Ruby Developer's Guide:
#
#   require "xmlrpc/server"
#
#   class Num
#     INTERFACE = XMLRPC::interface("num") {
#       meth 'int add(int, int)', 'Add two numbers', 'add'
#       meth 'int div(int, int)', 'Divide two numbers'
#     }
#
#     def add(a, b) a + b end
#     def div(a, b) a / b end
#   end
#
#
#   s = XMLRPC::CGIServer.new
#   s.add_handler(Num::INTERFACE, Num.new)
#   s.serve
#
# === Standalone XMLRPC::Server
#
# Same as CGI-based server, the only difference being
#
#   server = XMLRPC::CGIServer.new
#
# must be changed to
#
#   server = XMLRPC::Server.new(8080)
#
# if you want a server listening on port 8080.
# The rest is the same.
#
# === Choosing a different XMLParser or XMLWriter
#
# The examples above all use the default parser (which is now since 1.8
# XMLParser::REXMLStreamParser) and a default XMLRPC::XMLWriter.
# If you want to use a different XMLParser, then you have to call the
# ParserWriterChooseMixin#set_parser method of XMLRPC::Client instances
# or instances of subclasses of XMLRPC::BasicServer or by editing
# xmlrpc/config.rb.
#
# XMLRPC::Client Example:
#
#   # ...
#   server = XMLRPC::Client.new( "xmlrpc-c.sourceforge.net", "/api/sample.php")
#   server.set_parser(XMLRPC::XMLParser::XMLParser.new)
#   # ...
#
# XMLRPC::Server Example:
#
#   # ...
#   s = XMLRPC::CGIServer.new
#   s.set_parser(XMLRPC::XMLParser::XMLStreamParser.new)
#   # ...
#
# or:
#
#   # ...
#   server = XMLRPC::Server.new(8080)
#   server.set_parser(XMLRPC::XMLParser::NQXMLParser.new)
#   # ...
#
#
# Note that XMLParser::XMLStreamParser is incredible faster (and uses less memory) than any
# other parser and scales well for large documents. For example for a 0.5 MB XML
# document with many tags, XMLParser::XMLStreamParser is ~350 (!) times faster than
# XMLParser::NQXMLTreeParser and still ~18 times as fast as XMLParser::XMLTreeParser.
#
# You can change the XML-writer by calling method ParserWriterChooseMixin#set_writer.
module XMLRPC; end

Directory Contents

Dirs: 29 × Files: 75

Name Size Perms Modified Actions
cgi DIR
- drwxr-xr-x 2024-03-03 22:43:14
Edit Download
digest DIR
- drwxr-xr-x 2024-03-03 22:43:14
Edit Download
drb DIR
- drwxr-xr-x 2024-03-03 22:43:14
Edit Download
fiddle DIR
- drwxr-xr-x 2024-03-03 22:43:14
Edit Download
io DIR
- drwxr-xr-x 2024-03-03 22:43:16
Edit Download
irb DIR
- drwxr-xr-x 2024-03-03 22:43:14
Edit Download
json DIR
- drwxr-xr-x 2024-03-03 22:43:17
Edit Download
matrix DIR
- drwxr-xr-x 2024-03-03 22:43:14
Edit Download
net DIR
- drwxr-xr-x 2024-03-03 22:43:14
Edit Download
openssl DIR
- drwxr-xr-x 2024-03-03 22:43:14
Edit Download
optparse DIR
- drwxr-xr-x 2024-03-03 22:43:14
Edit Download
psych DIR
- drwxr-xr-x 2024-03-03 22:43:17
Edit Download
racc DIR
- drwxr-xr-x 2024-03-03 22:43:14
Edit Download
rake DIR
- drwxr-xr-x 2024-03-03 22:53:17
Edit Download
rbconfig DIR
- drwxr-xr-x 2024-03-03 22:43:19
Edit Download
rdoc DIR
- drwxr-xr-x 2024-03-03 22:43:18
Edit Download
rexml DIR
- drwxr-xr-x 2024-03-03 22:43:14
Edit Download
rinda DIR
- drwxr-xr-x 2024-03-03 22:43:14
Edit Download
ripper DIR
- drwxr-xr-x 2024-03-03 22:43:14
Edit Download
rss DIR
- drwxr-xr-x 2024-03-03 22:43:14
Edit Download
rubygems DIR
- drwxr-xr-x 2024-03-03 22:43:19
Edit Download
shell DIR
- drwxr-xr-x 2024-03-03 22:43:14
Edit Download
syslog DIR
- drwxr-xr-x 2024-03-03 22:43:14
Edit Download
- drwxr-xr-x 2024-03-03 22:43:14
Edit Download
uri DIR
- drwxr-xr-x 2024-03-03 22:43:14
Edit Download
webrick DIR
- drwxr-xr-x 2024-03-03 22:43:14
Edit Download
- drwxr-xr-x 2024-03-03 22:43:17
Edit Download
xmlrpc DIR
- drwxr-xr-x 2024-03-03 22:43:14
Edit Download
yaml DIR
- drwxr-xr-x 2024-03-03 22:43:14
Edit Download
3.46 KB lrw-r--r-- 2014-07-11 08:16:05
Edit Download
2.63 KB lrw-r--r-- 2013-05-19 03:10:21
Edit Download
17.73 KB lrw-r--r-- 2014-09-11 08:09:07
Edit Download
9.77 KB lrw-r--r-- 2014-08-07 06:14:29
Edit Download
9.34 KB lrw-r--r-- 2015-07-03 19:31:05
Edit Download
82.45 KB lrw-r--r-- 2014-11-04 03:21:53
Edit Download
980 B lrw-r--r-- 2023-07-26 14:31:54
Edit Download
29.08 KB lrw-r--r-- 2013-12-14 14:48:36
Edit Download
10.71 KB lrw-r--r-- 2014-07-26 17:11:56
Edit Download
2.79 KB lrw-r--r-- 2023-07-26 14:31:54
Edit Download
19 B lrw-r--r-- 2009-10-02 10:45:39
Edit Download
3.77 KB lrw-r--r-- 2014-08-24 07:16:25
Edit Download
6.42 KB lrw-r--r-- 2014-05-31 19:54:55
Edit Download
26.35 KB lrw-r--r-- 2014-12-12 10:48:57
Edit Download
2.14 KB lrw-r--r-- 2023-07-26 14:31:54
Edit Download
1.65 KB lrw-r--r-- 2023-07-26 14:31:54
Edit Download
47.46 KB lrw-r--r-- 2017-03-25 18:24:28
Edit Download
2.48 KB lrw-r--r-- 2014-10-13 07:34:23
Edit Download
8.22 KB lrw-r--r-- 2017-03-25 14:43:16
Edit Download
15.38 KB lrw-r--r-- 2013-05-19 14:50:47
Edit Download
17.06 KB lrw-r--r-- 2015-11-24 15:49:21
Edit Download
20.03 KB lrw-r--r-- 2016-03-28 15:07:06
Edit Download
1.74 KB lrw-r--r-- 2023-07-26 14:31:54
Edit Download
5.74 KB lrw-r--r-- 2023-07-26 14:31:54
Edit Download
20.33 KB lrw-r--r-- 2016-10-27 07:47:14
Edit Download
3.84 KB lrw-r--r-- 2014-08-26 12:07:57
Edit Download
53.14 KB lrw-r--r-- 2014-11-27 01:03:46
Edit Download
82.59 KB lrw-r--r-- 2023-07-26 14:29:02
Edit Download
6.93 KB lrw-r--r-- 2012-11-16 16:55:29
Edit Download
2.00 KB lrw-r--r-- 2013-02-20 02:51:51
Edit Download
5.80 KB lrw-r--r-- 2014-08-27 12:21:41
Edit Download
24.58 KB lrw-r--r-- 2014-12-24 09:11:05
Edit Download
20.55 KB lrw-r--r-- 2014-11-04 03:09:28
Edit Download
528 B lrw-r--r-- 2023-07-26 14:31:54
Edit Download
28 B lrw-r--r-- 2014-05-26 03:25:38
Edit Download
52.05 KB lrw-r--r-- 2017-03-25 18:28:27
Edit Download
8.66 KB lrw-r--r-- 2017-03-25 18:35:09
Edit Download
15.58 KB lrw-r--r-- 2023-07-26 14:31:54
Edit Download
14.16 KB lrw-r--r-- 2014-12-05 19:35:19
Edit Download
15.85 KB lrw-r--r-- 2014-08-22 02:38:59
Edit Download
13.11 KB lrw-r--r-- 2014-12-10 20:38:13
Edit Download
205 B lrw-r--r-- 2009-10-02 10:45:39
Edit Download
4.51 KB lrw-r--r-- 2013-05-19 23:04:36
Edit Download
14.55 KB lrw-r--r-- 2014-07-23 19:31:18
Edit Download
14.88 KB lrw-r--r-- 2023-07-26 14:31:54
Edit Download
2.23 KB lrw-r--r-- 2014-12-06 00:22:51
Edit Download
4.96 KB lrw-r--r-- 2014-12-07 01:22:37
Edit Download
1.73 KB lrw-r--r-- 2013-03-11 13:47:04
Edit Download
72.06 KB lrw-r--r-- 2015-05-19 17:05:35
Edit Download
2.53 KB lrw-r--r-- 2023-07-26 14:31:54
Edit Download
2.84 KB lrw-r--r-- 2011-05-11 10:22:16
Edit Download
31.85 KB lrw-r--r-- 2018-02-16 16:27:56
Edit Download
23.54 KB lrw-r--r-- 2014-02-15 01:33:03
Edit Download
9.20 KB lrw-r--r-- 2016-04-22 09:17:57
Edit Download
19.15 KB lrw-r--r-- 2014-08-06 11:28:21
Edit Download
11.30 KB lrw-r--r-- 2014-08-24 07:16:25
Edit Download
5.96 KB lrw-r--r-- 2014-09-05 10:00:46
Edit Download
4.02 KB lrw-r--r-- 2011-05-18 14:09:38
Edit Download
25.60 KB lrw-r--r-- 2023-07-26 14:31:54
Edit Download
7.25 KB lrw-r--r-- 2013-05-19 03:10:21
Edit Download
11.11 KB lrw-r--r-- 2014-09-21 01:40:21
Edit Download
3.31 KB lrw-r--r-- 2014-08-27 12:10:21
Edit Download
22.25 KB lrw-r--r-- 2015-08-03 19:11:41
Edit Download
3.64 KB lrw-r--r-- 2015-08-10 17:08:37
Edit Download
4.13 KB lrw-r--r-- 2018-03-28 14:34:14
Edit Download
6.40 KB lrw-r--r-- 2013-07-18 13:50:32
Edit Download
14.27 KB lrw-r--r-- 2014-11-26 10:46:50
Edit Download
268 B lrw-r--r-- 2009-10-02 10:45:39
Edit Download
8.87 KB lrw-r--r-- 2013-07-05 13:43:25
Edit Download
3.16 KB lrw-r--r-- 2015-01-16 02:06:34
Edit Download
3.07 KB lrw-r--r-- 2014-11-03 00:33:44
Edit Download
2.92 KB lrw-r--r-- 2014-07-26 17:12:11
Edit Download
6.69 KB lrw-r--r-- 2013-10-05 23:39:32
Edit Download
8.49 KB lrw-r--r-- 2013-12-12 03:09:19
Edit Download
1.70 KB lrw-r--r-- 2014-06-26 02:52:46
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).