SOAPServerDescription {SSOAP} | R Documentation |
This function creates an instance of the class
SOAPServerDescription
(or the value of obj
)
and populates it with the specified collections of
SOAP operations and data structure types, and
information about the location of the SOAP server.
This description can then be used to
generate code to interface to the server's methods
(see genSOAPClientInterface
).
The information is typically generated by reading the WSDL
file, e.g. via processWSDL
.
SOAPServerDescription(name, server, operations, types, nameSpaces = NA, obj = new("SOAPServerDescription"))
name |
a string (character vector) giving the name of the SOAP server. This typically comes from |
server |
|
operations |
|
types |
|
obj |
an instance of the desired result whose slots are filled in
during the call. This should be ``compatible'' with (i.e. extend) SOAPServerDescription . |
nameSpaces |
a character vector that identifies the
namespace-URI mappings used for calls to this server.
This maps the namespace abbreviations to the actual URIs.
This can be a named character vector of these mappings, or
alternatively a simple character string that identifies the name of
the element in the .SOAPDefaultNameSpaces list.
And if we don't know the collection of namespaces, we use
NA to indicate that we shall determine this later. |
The object obj
returned with the relevant
fields filled in with values
Duncan Temple Lang <duncan@wald.ucdavis.edu>
http://www.w3.org/TR/SOAP/ http://www.omegahat.org/SSOAP