.XMLRPC {SSOAP}R Documentation

Invoke a server method via XML-RPC

Description

This function uses a different, simpler protocol for invoking a method in a remote server

Usage

.XMLRPC(server, method, ..., .opts = list(), write = basicTextGatherer(), .convert = xmlRPCResult, curl = getCurlHandle())

Arguments

server
method ~~Describe method here~~
... ~~Describe ... here~~
.opts ~~Describe .opts here~~
write ~~Describe write here~~
.convert ~~Describe .convert here~~
curl ~~Describe curl here~~

Details

~~ If necessary, more details than the description above ~~

Value

For typical calls where one only specifies the server, the method name and any arguments, the return value is the result converted from the XML returned by the remote server. If this is a regular value, it is converted to its R equivalent, i.e. a number, logical or string value or a list corresponding to a struct in XML-RPC. If the method invocation results in a fault, an XMLRPCError is raised by the function. This is a specialized simpleError object (see signalCondition)

Author(s)

Duncan Temple Lang <duncan@wald.ucdavis.edu>

References

http://www.omegahat.org/SSOAP http://www.xmlrpc.com/spec

See Also

.XMLRPC xmlTreeParse

Examples



[Package SSOAP version 0.4-4 Index]