Hi @KeKs0r , no ... currently only these
SoapClient.call({
'method' : 'soapMethod2',
//optional namespace for call
'namespace' : 'soapMethod2Namespace',
//optional headers for call
'headers' : {
'Cookie' : 'test'
},
'params' : {
//default
'test' : 2,
//list of items
'test1' : ['item1', 'item2']
//if attributes needed
'test2' : {
'_attributes' : {
'id' : 1
},
'_value' : 'test1data'
}
}
})
but pull requests are welcome ! ;)