Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
1  
A variant can hold data in many different forms. What form does the web service want it in. – David Heffernan Oct 30 '12 at 16:21
The Web Service accepts parameter as a variable of type Variant, but she has to have the content with an Array of Byte, do not know the operation of the Web Service but informed me that it should be passed in this way, the intention is to send a file to it . – Jose Eduardo Oct 30 '12 at 16:31
Is it a SAFEARRAY? Remember that a VARIANT is just a container. You still need to know the expected format of the contents. – David Heffernan Oct 30 '12 at 16:32
No. I can also inform the separated format, my difficulty is to pass this array of Bytes being the only method accepts the parameter as Variant, if you know another way you can help me I thank very much. – Jose Eduardo Oct 30 '12 at 16:37
1  
I guess you aren't understanding me. A VARIANT can contain data in many different formats. Knowing that the data is contained in a VARIANT is 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
show 5 more comments

1 Answer

According to the comment trail, you need to create a SAFEARRAY of bytes. Which is done like this in Delphi:

V := VarArrayCreate([0, N-1], varByte);

Or, if the SAFEARRAY needs 1-based indexing:

V := VarArrayCreate([1, N], varByte);

You can then populate the array in a loop using V[i] := ....

If you have a Delphi dynamic array of Byte, and the expected SAFEARRAY uses 0-based indexing, then you can simply write:

V := a;

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 v := a approach results in element by element copying which will be horribly slow for large amounts of data.

In your position, I'd blit the array in one go. Like this:

var
  i: Integer;
  a: array of Byte;
  V: Variant;
  SafeArray: PVarArray;
....
// populate a
V := VarArrayCreate([0,high(a)], varByte);
SafeArray := VarArrayAsPSafeArray(V);
Move(Pointer(a)^, SafeArray.Data^, Length(a)*SizeOf(a[0]));

Or, if you need to use 1-based indexing:

V := VarArrayCreate([1,Length(a)], varByte);
SafeArray := VarArrayAsPSafeArray(V);
Move(Pointer(a)^, SafeArray.Data^, Length(a)*SizeOf(a[0]));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.