| processWSDL {SSOAP} | R Documentation |
This reads and converts a WSDL file for a server into a collection of functions and methods.
processWSDL(fileName = "KEGG.wsdl")
fileName |
the name of the WSDL file or URI. |
An object of class SOAPServerDescriptions.
Duncan Temple Lang <duncan@research.bell-labs.com>
tmp = processWSDL(system.file("examples", "KEGG.wsdl", package = "SSOAP"))
ff = genSOAPClientInterface(tmp@operations[[1]], def = tmp, tmp@name, verbose=FALSE)
o = tmp@operations[[1]][[1]]@parameters[[3]]
# ff$functions$getAllNeighborsByGene(kid="eco:b0002", threshold= as.integer(500), orgs = c("ecs","ypk"), .debug = TRUE)
x = ff$functions$getParalogsByGene("eco:b0002", 100)
tp = get(".operation", environment(ff$functions$getParalogsByGene))@returnValue
tmp = processWSDL(system.file("examples", "XMethodsFilesystemService.wsdl.xml", package = "SSOAP"))