similar to: SSOAP Parameter Structures: Nested Arrays

Displaying 20 results from an estimated 300 matches similar to: "SSOAP Parameter Structures: Nested Arrays"

2009 Nov 06
1
issues with SSOAP when wsdl has ComplexTypes
I recently started trying R and SSOAP and was able to successfully try a "hello world" service. I am now trying to get a more complicated interface to work with SSOAP and so far failed miserably at that and so need any help I can get from here. The service I am attaching is a prototype for a full service that would take information to identify a data source and a query to run and return
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 WSDL generator. I am a bit lost how to continue debugging
2010 Sep 10
0
SSOAP complex request types
Hi, I'm having a bit of trouble using SSOAP to send requests containing complex types. It seems as though processWSDL does not generate functions for converting the generated types into SOAP requests, but it does generate them for converting **from** SOAP requests to the complex types. The error that I get when trying to pass an object of type "LoginReq" (as generated by
2005 Jun 14
0
question about SSOAP
Dear R folks: I am trying to use SSOAP (version 0.2-2) package in R (version 2.1.0,linux) to access SOAP service on NCBI (http://www.ncbi.nlm.nih.gov) its WSDL file is at http://www.ncbi.nlm.nih.gov/entrez/eutils/soap/eutils.wsdl but some errors occured: > ncbi <- processWSDL("http://www.ncbi.nlm.nih.gov/entrez/eutils/soap/eutils.wsdl") > ff <-
2010 Jun 22
0
XMLSchema:::processSchemaTypes() fails with XMLSchema.xsd [was: SSOAP fails with .types[[1]] : subscript out of bounds]
Hi again, On Tue, 2010-06-22 at 10:02 +0200, Steffen Neumann wrote: > So, if XMLSchema:::processSchemaTypes() does not find > any custom/embedded type definitions, is it possibe to "inject" those > from the http://www.w3.org/2001/XMLSchema.xsd > into genSOAPClientInterface() instead ? Well, it's not possible, at least for me. This is as far as I got, any help
2007 Nov 06
1
Pass Array input to web service
Hello everybody, I'm using SSOAP and RCurl to call webservice. I got success in calling webservice with string as an input. Now i want to pass array as an input(can be single or multidimensional). When i do that i get error. unable to find an inherited method for function "toSOAP", for signature "data.frame", "textConnection", "NULL" When i remove
2010 Jan 27
1
SSOAP XML-RPC
Hi, I'm trying to use the XML-RPC client in the SSOAP package to connect to a service that I have created. From other languages (Perl, Python, Ruby) this is not a problem but the SSOAP client gives the following error: Error in .XMLRPC("http://localhost:9000", "Cytoscape.test", .opts = list(verbose = TRUE)) : Failed to parse XML-RPC request: Content is not allowed in
2008 Jul 28
0
Question about the SSOAP package
Hello, I need to retrieve data from the internet to R using SOAP protocol. I found that SSOAP package (http://www.omegahat.org/SSOAP/) should do the work. However, I cannot install it properly. It just does not work. I am using R 2.7.1 (this was the only version on which other required packages (for SSOAP) RCurl and XML are working) on Windows. Does anyone is using this package and could give me
2005 Jan 10
0
SSOAP and Rcurl with proxy server
Hi I'm trying to use a bioconductor package (KEGGSOAP) which relies on Rcurl and SSOAP. As an example, a function exists: > list.organisms function () { orgs <- matrix(unlist(.SOAP(KEGGserver, "list_organisms", "", action = KEGGaction, xmlns = KEGGxmlns), use.names = FALSE), ncol = 2, byrow = TRUE) temp <- orgs[, 2] names(temp)
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
2009 Jun 18
0
SSOAP access to a j2EE-ws service
I am currently trying to access a SOAP web service (hosted on a JBoss5 server and defined as a J2EE-ws service) via the SSOAP R-package. But all I can get is a NULL answer. The web service seems to work as it can be accessed using a general web-service tester. The web service wsdl is here: http://smg8.ulb.ac.be:8080/web2?wsdl. This is how I try to call the web service from R: --- >
2009 Jul 21
0
help for SSOAP
Hi, I am trying to learn how to from within R access web services. I am also interested in having R be a client and from within R access data on other web services. Specifically the web services I would like to access from within R are “http://water.sdsc.edu/waterOneFlow/NWIS/DailyValues.asmx?WSDL” Therefor, I wrote the following code into R program: > library(SSOAP) >
2012 Mar 07
2
SSOAP and Chemspider: Security token?
Dear community, has anyone managed to get SSOAP working with the ChemSpider Web APIs, using functions which need the security token? I use SSOAP 0.9-0 from the OmegaHat repository. In the example code from SSOAP there is a sample which uses a token function. Interestingly, it checks if(!is.character(token)) first (and proceeds if the token is NOT character.) I can't test that function since I
2009 Jun 03
1
SSOAP failing
Dear list, I am trying to use the SSOAP package to access a very simple SOAP service, included as a demonstrator in the axis2 Apache package: "Version" (takes no input parameters and should return a string with the version number). The web service itself seems to be working as I could access it using an other client (eclipse Web Server tester). You will find the service wsdl here:
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]
Hi, so, last post from here unless I can provide any more input to fix the upstream package. On Tue, 2010-06-22 at 10:02 +0200, Steffen Neumann wrote: > So I got a bit further, the reason 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
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, and that the service passes input/output as a single
2007 Oct 24
1
Calling php web service fails
Hi , I'm trying to call a php webservice. I tried examples given in pdf - R as Web Client and SSOAP manual. I'm using RCurl and SSOAP library. I'm facing problem with SSOAP - Error in getProtocol(server) : call to standardGeneric("server") and with RCurl i only see the web service page. I want to call a PHP web service and send paramters to web service and retrieve
2017 Feb 24
2
BUG or ???
Got a strange situation [ext-queues] ... exten => h,2,ExecIf($[${CALLERID(num)} = ' ']?Set(var29=${SHELL(curl -X POST --header "Content-Type: application/json" --header "Accept: application/json" -d "{\"Phone\": ${FROMEXTEN}, \"Source\": \"asterisk\"}" "
2006 Aug 31
1
SOAP MTOM
Any thoughts on extending ActionWebService to handle MTOM? http://www.w3.org/TR/soap12-mtom basically, this allows some flexibility when it comes to base64 encode/decode on the message, binary attachments can pass without being encoded... am I on my own here? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups