Acesso ao serviço Web com R e SSOAP de cbr.ru

Estou a tentar recuperar dados do CBR (Banco Central da Rússia). cbr.ru) através da sua plataforma de serviços web. Basicamente, eu fui inspirado por um código de este exemplo Usando o pacote SSOAP para R.

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 

e recebo o seguinte erro:

Error in .SOAP(server, .operation@name, parameters = as(parameters, "dateTime"),  : object '.operation' not found 
Alguém me pode dar sugestões sobre o que está a correr mal?

Author: Dave X, 2012-10-25