processWSDL {SSOAP}R Documentation

Read and process a Web Service Description Language file

Description

This reads and converts a WSDL file for a server into a collection of functions and methods.

Usage

processWSDL(fileName = "KEGG.wsdl")

Arguments

fileName the name of the WSDL file or URI.

Details

Value

An object of class SOAPServerDescriptions.

Author(s)

Duncan Temple Lang <duncan@research.bell-labs.com>

See Also

Examples

  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"))


[Package SSOAP version 0.2-1 Index]