Open eduardszoecs opened 10 years ago
I'm with the same error message for the WSDL http://sistemas.cvm.gov.br/webservices/Sistemas/SCW/CDocs/WsDownloadInfs.asmx?WSDL Did you find any solution?
Same issue for https://adwords.google.com/api/adwords/o/v201509/TrafficEstimatorService?wsdl
Do you have any ideas how to solve this?
Maybe for you guys:
options(expressions = 500000)
and http://stackoverflow.com/questions/14719349/error-c-stack-usage-is-too-close-to-the-limit#answer-14719448 helps
Well, the good news is that
library(SSOAP)
library(RCurl)
library(XML)
doc = xmlParse(getURLContent("https://adwords.google.com/api/adwords/o/v201509/TrafficEstimatorService?wsdl"))
iface = processWSDL(doc)
doesn't go into an infinite loop for me and returns a SOAPServerDescription object.
You can install SSOAP and XMLSchema from the github repositories, or I've put versions of these packages from the current repos code at http://www.omegahat.org/SSOAP_0.92-0.tar.gz http://www.omegahat.org/XMLSchema_0.8-0.tar.gz
And works for JHMenegotto 's URL also.
This seems to have stopped working again (with an update to the WSDL?) for the worms service. Another minor but important fix is in the XMLSchema repos now that cures the problem.
For our taxize I tried to interact with the WoRMS webservice. However I can't get their example to run:
Any Ideas?
The problem comes actually from
XMLSchema:::defineClasses()
and there probably the two nestedlapply()
(?).