るりまサーチ

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

別のキーワード

  1. matrix l
  2. kernel $-l
  3. _builtin $-l
  4. lupdecomposition l
  5. l matrix

検索結果

xmlrpc (44162.0)

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

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

このページは xmlrpc ライブラリのまとめのページであり、require 'xmlrpc' を実行しても
エラーになることに注意して下さい。

=== Author and Copyright

Copyright (C) 2001-2004 by Michael Neumann

Released und...
...erm 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...
...(XMLRPC::XMLParser::XMLStreamParser.new)
# ...

or:

require 'xmlrpc/server'
# ...
server = XMLRPC::Server.new(8080)
server.set_parser(XMLRPC::XMLParser::NQXMLParser.new)
# ...


Note that XMLStreamParser is incredible faster (and uses less memory) than any
other parser and scales well...