[R] how to download data from soap server using R

2012-05-06 Thread sagarnikam123
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.

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] how to download data from soap server using R

2012-05-06 Thread Duncan Temple Lang
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@functions$list_datbases()

D.


On 5/6/12 3:01 AM, sagarnikam123 wrote:
 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.
 
 __
 R-help@r-project.org mailing list
 https://stat.ethz.ch/mailman/listinfo/r-help
 PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
 and provide commented, minimal, self-contained, reproducible code.

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.