to_xmlrpc {xmlrpc2} | R Documentation |
XML-RPC
Callabc
to_xmlrpc(method, params)
method |
a character string giving the name of the method to be invoked. |
params |
a list containing the parmeters which are added to
the |
an object of class "xml_node"
containing a XML-RPC
call.
params <- list(1L, 1:3, rnorm(3), LETTERS[1:3], charToRaw("A"))
cat(as.character(to_xmlrpc("some_method", params)))