O nó SOAP retorna o erro Target-Namespace “indefinido” já em uso por outro esquema

Estou tentando escrever um cliente para o correio russo para rastrear. Ele usa o WSDL SOAP. Eu devo pegar pelo menos o objeto cliente.

 'use strict'
let soap=require('soap'),
url = 'https://tracking.russianpost.ru/rtm34?wsdl',
argums={}

soap.createClient(url,argums,function(err, client){
    console.log(client) 
})

mas retorna erro

Target-Namespace "undefined" already in use by another Schema!
Target-Namespace "undefined" already in use by another Schema!
Target-Namespace "undefined" already in use by another Schema!
Target-Namespace "undefined" already in use by another Schema!
Target-Namespace "undefined" already in use by another Schema!
/home/st.cremer/Сайты/get-posts/node_modules/soap/lib/wsdl.js:481
    this.element = schema.elements[nsName.name];
                         ^

TypeError: Cannot read property 'elements' of undefined

Alguém pode explicar o que significa e como deve ser a solicitação?

questionAnswers(3)

yourAnswerToTheQuestion