processWSDL              package:SSOAP              R Documentation

_R_e_a_d _a_n_d _p_r_o_c_e_s_s _a _W_e_b _S_e_r_v_i_c_e _D_e_s_c_r_i_p_t_i_o_n _L_a_n_g_u_a_g_e _f_i_l_e

_D_e_s_c_r_i_p_t_i_o_n:

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

_U_s_a_g_e:

     processWSDL(fileName = "KEGG.wsdl")

_A_r_g_u_m_e_n_t_s:

fileName: the name of the WSDL file or URI.

_D_e_t_a_i_l_s:

_V_a_l_u_e:

     An object of class 'SOAPServerDescriptions'.

_A_u_t_h_o_r(_s):

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

_S_e_e _A_l_s_o:

_E_x_a_m_p_l_e_s:

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

