Object
Marshalling of XMLRPC::Create#methodCall
and XMLRPC::Create#methodResponse
# File xmlrpc-0.3.0/lib/xmlrpc/marshal.rb, line 21 def dump_call( methodName, *params ) new.dump_call( methodName, *params ) end
# File xmlrpc-0.3.0/lib/xmlrpc/marshal.rb, line 25 def dump_response( param ) new.dump_response( param ) end
# File xmlrpc-0.3.0/lib/xmlrpc/marshal.rb, line 29 def load_call( stringOrReadable ) new.load_call( stringOrReadable ) end
# File xmlrpc-0.3.0/lib/xmlrpc/marshal.rb, line 33 def load_response( stringOrReadable ) new.load_response( stringOrReadable ) end
# File xmlrpc-0.3.0/lib/xmlrpc/marshal.rb, line 47 def dump_call( methodName, *params ) create.methodCall( methodName, *params ) end
# File xmlrpc-0.3.0/lib/xmlrpc/marshal.rb, line 51 def dump_response( param ) create.methodResponse( ! param.kind_of?( XMLRPC::FaultException ) , param ) end