Object
# File xmlrpc/marshal.rb, line 23
def dump_call( methodName, *params )
new.dump_call( methodName, *params )
end
# File xmlrpc/marshal.rb, line 27
def dump_response( param )
new.dump_response( param )
end
# File xmlrpc/marshal.rb, line 31
def load_call( stringOrReadable )
new.load_call( stringOrReadable )
end
# File xmlrpc/marshal.rb, line 35
def load_response( stringOrReadable )
new.load_response( stringOrReadable )
end
# File xmlrpc/marshal.rb, line 51
def dump_call( methodName, *params )
create.methodCall( methodName, *params )
end
# File xmlrpc/marshal.rb, line 55
def dump_response( param )
create.methodResponse( ! param.kind_of?( XMLRPC::FaultException ) , param )
end
Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.
If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.
If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.
If you want to help improve the Ruby documentation, please see Improve the docs, or visit Documenting-ruby.org.