from_xmlrpc {xmlrpc2} | R Documentation |
Convert from the XML-RPC
Format into an R Object.
Description
Convert an object of class "xml_code"
or
a character in the XML-RPC
Format into an R Object.
Usage
from_xmlrpc(xml, raise_error = TRUE)
Arguments
xml |
a character string containing |
raise_error |
a logical controling the behavior if the
|
Value
an R object derived from the input.
Examples
params <- list(1L, 1:3, rnorm(3), LETTERS[1:3], charToRaw("A"))
xml <- to_xmlrpc("some_method", params)
from_xmlrpc(xml)
[Package xmlrpc2 version 1.1 Index]