genSOAPClientInterface {SSOAP}R Documentation

Create R functions to access SOAP server methods

Description

This function creates function definitions, etc. that provide access to the methods described in the SOAP server description details.

Usage

genSOAPClientInterface(operations = def@operations[[1]], def, name,
                       env = new.env(), where = 1, server = def@server,
                       verbose = FALSE)

Arguments

operations a list of the descriptions of the server's methods. Each method description provides information about the parameters and the return value.
def the SOAPServerDescription-class object.
name currently unused
env an environment object. This is used ?
where the location (usually in the search path) where new S4 classes will be defined to represent the complex return types. This can be any value that is acceptable for the where argument of setClass, i.e. an integer, a package name (“package:name”) or, explicitly, an environment.
server an object which will be used as the server in the SOAP calls. This provides the user with a mechanism to provide an alternative server object such as one which contains a password or which already has a connection to the SOAP server, or controls the connection in different ways.
verbose a logical indicating whether information about the processing should be displayed on the console, as it occurs.

Details

Value

Author(s)

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

References

http://www.w3.org/TR/SOAP/ http://www.omegahat.org/SSOAP, http://www.omegahat.org/bugs.

See Also

processWSDL

Examples



[Package SSOAP version 0.4-1 Index]