Ruby 处理 XML-RPC 消息

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

require "xmlrpc/marshal"

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