Displaying 5 results from an estimated 5 matches for "soapserv".
Did you mean:
scopserv
2007 Nov 06
1
Pass Array input to web service
...le to find an inherited method for function "toSOAP", for signature
"data.frame", "textConnection", "NULL"
When i remove argument part then it doesn't give any error.
here is the code
inputarray <- read.table("path/to/file")
Server <- SOAPServer("http://192.168.100.1/abc.php")
result <- .SOAP(Server, "FunctionName", .soapArgs=list('tempInput' =
inputarray),action="/abc.php")
Any suggestions.:working:
Thanks and regards,
Rohan7
--
View this message in context: http://www.nabble.com/Pass-Array...
2009 Jun 03
1
SSOAP failing
...tester).
You will find the service wsdl here:
http://smg8.ulb.ac.be:8080/axis2/services/Version?wsdl, and informations
on the other services I tried here:
http://smg8.ulb.ac.be:8080/axis2/services/listServices.
I used the following commands:
library("SSOAP")
smg8Version <- SOAPServer("smg8.ulb.ac.be",
"axis2/services/Version", 8080)
.SOAP(smg8Version, "getVersion", action=I("VersionHttpSoap11Endpoint"))
The first command seems to give a proper smg8Version object, but the
second one fails with "Error: evaluation nested too de...
2011 Jul 20
1
SSOAP & chemspider
....., obj = new( ?
^
In addition: Warning message:
In processWSDL("http://www.chemspider.com/MassSpecAPI.asmx?WSDL") :
Ignoring additional <service><port> ... elements
Next I've tried using just the pure .SOAP to call the database.
s <- SOAPServer("http://www.chemspider.com/MassSpecAPI.asmx")
csid<- .SOAP(s, "SearchByMass2", mass=89.04767, range=0.01,
action = I("http://www.chemspider.com/SearchByMass2"),
xmlns = c("http://www.chemspider.com"), .opts = list(verbose = TRUE))
This s...
2009 Jun 24
1
Qualified parameters in SOAP body using .SOAP
...;
<SOAP-ENV:Body>
<greetMe xmlns="http://web2.web/">
<arg0 xsi:type="xsd:string">Olivier</arg0>
</greetMe>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
The R commands used are:
library("SSOAP")
smg8TestService <- SOAPServer("smg8.ulb.ac.be", "/web2/TestService", 8080)
contentGreet <- .SOAP(server=smg8TestService, method="greetMe",
arg0="Olivier", action="", xmlns="http://web2.web/", .convert=FALSE)
But, AFAIU, the arg0 tag should NOT be qualified, acco...
2009 Jun 18
0
SSOAP access to a j2EE-ws service
...service wsdl is here: http://smg8.ulb.ac.be:8080/web2?wsdl.
This is how I try to call the web service from R:
---
> library("SSOAP")
Loading required package: XML
Loading required package: RCurl
Loading required package: bitops
Loading required package: XMLSchema
> greeter <- SOAPServer("smg8.ulb.ac.be", "/web2/TestService", 8080)
> .SOAP(greeter, "greetMe", action="", xmlns="http://web2.web/",
.opts=list(verbose = TRUE))
---
The result of the .SOAP call follows:
---
* About to connect() to smg8.ulb.ac.be port 8080 (#0)
*...