Ruby 处理 XML-RPC 消息

require "xmlrpc/marshal"

str = XMLRPC::Marshal.dump( { 'Ruby' => 'is cool' } )
puts str
p XMLRPC::Marshal.load( str )

编程技巧