Dumping and Loading XML-RPC Messages : xmlrpc « Network « Ruby
- Ruby
- Network
- xmlrpc
Dumping and Loading XML-RPC Messages
require "xmlrpc/marshal"
str = XMLRPC::Marshal.dump( { 'Ruby' => 'is cool' } )
puts str
p XMLRPC::Marshal.load( str )
Related examples in the same category