Any thoughts, anyone? How can I pass a binary file (as byte array) from Java (applet) to Flex, without the need to do the Base64 transcoding (which introduces unacceptable delays - especially the decoding part)? Thank you.
--- In [email protected], "Robert Csiki" <[EMAIL PROTECTED]> wrote: > > > Hello: > > I try calling a Java applet method (applet is loaded by the SWF's HTML > wrapper) using ExternalInterface.call(). The applet return type is > byte[], however on the Flex side, ExternalInterface.call() return null. > Any ideas how can I get my byte array in Flex? I observed the call > returns ok for some primitive types (int, boolean, String). But it does > not work for byte[]. and I want to avoid the Base64 transcoding, as it > takes too much time for large data. > > Thanks.. >

