class XMLRPC::Marshal
Marshalling of XMLRPC::Create#methodCall
and XMLRPC::Create#methodResponse
Public Class Methods
Source
# File lib/xmlrpc/marshal.rb, line 21 def dump_call( methodName, *params ) new.dump_call( methodName, *params ) end
Source
# File lib/xmlrpc/marshal.rb, line 25 def dump_response( param ) new.dump_response( param ) end
Also aliased as: dump
Source
# File lib/xmlrpc/marshal.rb, line 29 def load_call( stringOrReadable ) new.load_call( stringOrReadable ) end
Source
# File lib/xmlrpc/marshal.rb, line 33 def load_response( stringOrReadable ) new.load_response( stringOrReadable ) end
Also aliased as: load
Source
# File lib/xmlrpc/marshal.rb, line 42 def initialize( parser = nil, writer = nil ) set_parser( parser ) set_writer( writer ) end
Public Instance Methods
Source
# File lib/xmlrpc/marshal.rb, line 47 def dump_call( methodName, *params ) create.methodCall( methodName, *params ) end
Source
# File lib/xmlrpc/marshal.rb, line 51 def dump_response( param ) create.methodResponse( ! param.kind_of?( XMLRPC::FaultException ) , param ) end
Source
# File lib/xmlrpc/marshal.rb, line 56 def load_call( stringOrReadable ) parser.parseMethodCall( stringOrReadable ) end
Returns [ methodname, params ]
Source
# File lib/xmlrpc/marshal.rb, line 61 def load_response( stringOrReadable ) parser.parseMethodResponse( stringOrReadable )[1] end
Returns paramOrFault