vote up 1 vote down star

Hi everyone,

I'm new to Flex and couldn't figure out yet how to send binary data to the server as the body of a POST request. The HTTPService component doesn't seem to support this. The FileReference doesn't seem to support setting the data via the Flex API.

Unfortunately the answers to similar questions on stackoverflow.com haven't been very promising. Any new pointers would be greatly appreciated, thanks a lot!

-- Andreas

flag

0% accept rate
There's the binary flex Socket class if you're not tied to POST. Otherwise, you need to use something like Tarski says. HTTP can only be strings, so UUencode, or B64encode or something like that. – Glenn Sep 17 at 10:36

3 Answers

vote up 1 vote down

I've never used Flex but I would imagine you would need to encode your binary data in ascii using something like http://en.wikipedia.org/wiki/Uuencoding

link|flag
vote up 1 vote down

Post it using the URLLoader and URLRequest classes.

var urlLoader:URLLoader = new URLLoader();
var request:URLRequest = new URLRequest(url);
request.data = binaryData;
request.method = URLRequestMethod.POST
urlLoader.load(request);
link|flag
vote up 0 vote down

Depending on your goal, you may want to consider using AMF objects. google "flex actionscript" that assumes that you control the server. Zend AMF is a pretty good PHP AMF implementation.

link|flag

Your Answer

Get an OpenID
or

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