Skip to content

how to download data from soap server using R

2 messages · sagarnikam123, Duncan Temple Lang

#
i don't know perl,but on server site,they give soap:lite using perl ,
go to--->http://www.kegg.jp/kegg/soap/doc/keggapi_manual.html
i want to download data from kegg server ,using R only, 
how to proceed?
& what is mean by SOAP client driver ?
also go to http://soap.genome.jp/KEGG.wsdl

--
View this message in context: http://r.789695.n4.nabble.com/how-to-download-data-from-soap-server-using-R-tp4612595.html
Sent from the R help mailing list archive at Nabble.com.
#
There is a kegg package available from the BioConductor repository.
Also, you can generate an interface via the SSOAP package:

  library(SSOAP)
  w = processWSDL(http://soap.genome.jp/KEGG.wsdl)
  iface = genSOAPClientInterface(, )

  iface at functions$list_datbases()

    D.
On 5/6/12 3:01 AM, sagarnikam123 wrote: