Displaying 3 results from an estimated 3 matches for "massbank".
2009 Nov 03
1
help with SSOAP (can't find working examples)
First of all, let me confess that I am a newbie to R and don't know
much about the language or the environment. We have a need for
plugging in R in our production runtime and need the ability to pull
data out of our existing services. I am trying to see if I can take
advantage of SSOAP such that we can expose the data via webservices
and use SSOAP to call into them. Our runtime is mostly
2011 Jul 20
1
SSOAP & chemspider
Dear all,
I've been trying on and off for the past few months to get SSOAP to work with chemspider. First I tried the WSDL file:
cs<-processWSDL("http://www.chemspider.com/MassSpecAPI.asmx?WSDL")
Error in parse(text = paste(txt, collapse = "\n")) :
<text>:1:29: unexpected input
1: function(x, ..., obj = new( ?
^
In addition:
2010 Jun 22
0
Working cludge [Re: SSOAP fails with .types[[1]] : subscript out of bounds]
...eason for the error is
> that the WSDL *does not have* any <wsdl:types>...</wsdl:types>,
I created a local copy and inserted a dummy
<wsdl:types>...</wsdl:types> element.
Then, my simple snippet works:
library(SSOAP)
# Hacked local copy
w = processWSDL("./MassBank_Instruments")
# this breaks genSOAPClientInterface()
w = processWSDL("http://biomoby.org/services/wsdl/ipb-halle.de/MassBank_Instruments")
mobyRequest <- "<moby:MOBY xmlns:moby=\"http://www.biomoby.org/moby\"/>"
iface = genSOAPClientInterface(d...