Yet, I haven't found how to do this in Ruby(Script):
<%@ ENABLESESSIONSTATE=FALSE LANGUAGE=PerlScript %>
<%
use Win32::OLE::Variant;
$Response->{ContentType} = 'image/gif';
my $filename = $Server->MapPath('Under_construction.gif');
my $buf;
open ( FILE, $filename );
read ( FILE, $buf, 10000 );
close FILE;
# This converts to a variant unicode value
my $variant = Win32::OLE::Variant->new( VT_UI1, $buf );
$Response->BinaryWrite($variant);
%>
The problem is in VARIANT creation - is this supported in win32ole ?
(The second question would be how to create/read 'structured' (VT_ARRAY)
variants.)
Have I missed something ? Thanks.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
-
Hynek Rostinsky
e-mail: hynek.rostinsky / foresta.cz, ICQ: 96558085, jabber:
hynek / njs.netlab.cz
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
-