Web サービス プラットフォームを介して CBR (ロシアの中央銀行 - cbr.ru) から R にデータを取得しようとしています。基本的に、 R 用の SSOAP パッケージを使用したこの例のコードに触発されました。
wsdl <- 'http://www.cbr.ru/secinfo/secinfo.asmx?WSDL'
doc <- xmlInternalTreeParse(wsdl)
def <- processWSDL(doc)
ff <- genSOAPClientInterface(def = def)
xmlstr.f <- ff@functions #gives the list of functions that can be accessed
# just an example of retrieval attempt
t1 <- new('dateTime',as.POSIXct('2012-10-10')) #creating an object of dateTime class as requested
xmlstr.f$GCurve(t1) #trying to call SOAP server with GCurve function
次のエラーが表示されます。
Error in .SOAP(server, .operation@name, parameters = as(parameters, "dateTime"), : object '.operation' not found
ここで何がうまくいかないのか、誰か提案してもらえますか?