Displaying 3 results from an estimated 3 matches for "biomoby".
Did you mean:
biology
2010 Jun 22
0
Working cludge [Re: SSOAP fails with .types[[1]] : subscript out of bounds]
...t;,
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(def = w, verbose=TRUE)
cat(iface at functions$MassBank_Instruments(mobyRequest))
Hope that helped,...
2010 Jun 22
1
SSOAP fails with .types[[1]] : subscript out of bounds
Hi,
I am trying to create a BioMoby client in R using SSOAP.
BioMoby is a normal SOAP web service, with request
and response messages wrapped in BioMoby XML dialect.
Since the particular WSDL I am having problems with
is autogenerated and used similarly by *many* services,
it would be quite important to a) fix SSOAP or
b) fix the...
2008 May 09
1
SSOAP: arguments passed as
Hi,
I have a SOAP service, provided by BioMoby
which I'd like to call via SSOAP.
My service breaks during genSOAPClientInterface()
genSOAPClientInterface(def=service, verbose = TRUE)
Operation MassBank_Simple_2
Error: Cannot resolve SOAP type in empty context
Problem seems to be that there are no <types> defined in the WSDL,
a...