るりまサーチ

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

別のキーワード

  1. webrick/https client_cert
  2. x509 trust_ssl_client
  3. x509 purpose_ssl_client
  4. openssl trust_ssl_client
  5. openssl client_cert_cb

検索結果

xmlrpc (30.0)

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

...e 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 resul...
...er, then you have to call the <i>set_parser</i> method 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")
se...