How to convert a byte array to Variant? I have a WebService that should receive an array of byte, but it only accepts variable of type VARIANT, I wonder how to convert in order to pass it as parameter for Web Services.
thank you
|
According to the comment trail, you need to create a
Or, if the
You can then populate the array in a loop using If you have a Delphi dynamic
If you have a lot of data to transfer then the element by element poking of the data that the RTL offers is pretty much hopeless. Even the simple In your position, I'd blit the array in one go. Like this:
Or, if you need to use 1-based indexing:
|
||||
|
|
SAFEARRAY? Remember that aVARIANTis just a container. You still need to know the expected format of the contents. – David Heffernan Oct 30 '12 at 16:32VARIANTcan contain data in many different formats. Knowing that the data is contained in aVARIANTis not enough information to specify the problem. Which format do you need it to be? Unless you can answer that question, you can't proceed. – David Heffernan Oct 30 '12 at 16:49