Can some please help with this. I need to pass an array to a wsdl function.
The type is an array of single byte elements in chunks of 300 KB or less.
I was able to read the data (From XML file) and converted it to a 1 dimension
data array. How can I determine what the size of that dataarray? And also is
it even possible to break that array out into 300 KB Chunks?
Thanks,
Jimmy
> Can some please help with this. I need to pass an array to a wsdl function.
> The type is an array of single byte elements in chunks of 300 KB or less.
>
> I was able to read the data (From XML file) and converted it to a 1 dimension
> data array.
> How can I determine what the size of that dataarray?
var arraySize = ArrayLen(YourArray)?
> And also is it even possible to break that array out into 300 KB Chunks?
var elementSize = Len(YourArray[index])
var numberOfElementsPerChunck = 300*1024/elementSize
> Thanks,
> Jimmy