to_xmlrpc {xmlrpc2}R Documentation

Create a XML-RPC Call

Description

abc

Usage

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

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

[Package xmlrpc2 version 1.1 Index]