to_xmlrpc: Create a 'XML-RPC' Call

Description Usage Arguments Value Examples

View source: R/xmlrpc2.R

Description

abc

Usage

1
to_xmlrpc(method, params)

Arguments

method

a character string giving the name of the method to be invoked.

params

a list containing the parmeters which are added to the XML file sent via the remote procedure call.

Value

an object of class "xml_node" containing a XML-RPC call.

Examples

1
2
params <- list(1L, 1:3, rnorm(3), LETTERS[1:3], charToRaw("A"))
cat(as.character(to_xmlrpc("some_method", params)))

xmlrpc2 documentation built on May 2, 2019, 4:52 p.m.

Related to to_xmlrpc in xmlrpc2...