I am using the zeep python package so as to call a function through SOAP which accepts an argument of 'ArrayofInt' type.
Passing a 'normal' integer array doesn't work... the workaround is to run through the elements of the array with a for loop and send the elements one-by-one but this is not the cleanest code I have ever written:)
Any suggestions?