るりまサーチ

最速Rubyリファレンスマニュアル検索!
3件ヒット [1-3件を表示] (0.010秒)
トップページ > クエリ:xmlrpc/client[x]

別のキーワード

  1. xmlrpc
  2. news for ruby 2.1.0 xmlrpc
  3. news for ruby 2.2.0 xmlrpc

検索結果

xmlrpc (12.0)

XML-RPC を扱うためのライブラリです。

...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.sumAndDiffere...
...hod of
XMLRPC::Client instances or instances of subclasses of
XMLRPC::BasicServer or by editing xmlrpc/config.rb.

Client Example:

require 'xmlrpc/client'
# ...
server = XMLRPC::Client.new( "xmlrpc-c.sourceforge.net", "/api/sample.php")
server.set_parser(XMLRPC::XMLParser::XMLParser.new)...