[flexcoders] Re: JS - How to send a byteArray using HTTPService??

2007-10-30 Thread li wenzhi
: Abdul Qabiz [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, October 30, 2007 12:23:56 PM Subject: Re: [flexcoders] Re: JS - How to send a byteArray using HTTPService?? I think, you can use AMFPHP on server-side. You can refer the following tutorial:- http://www.sephirot h.it

Re: [flexcoders] Re: JS - How to send a byteArray using HTTPService??

2007-10-30 Thread Abdul Qabiz
:56 PM Subject: Re: [flexcoders] Re: JS - How to send a byteArray using HTTPService?? I think, you can use AMFPHP on server-side. You can refer the following tutorial:- http://www.sephirot h.it/tutorials/ flashPHP/ amfphp_bytearray /http://www.sephiroth.it/tutorials/flashPHP

[flexcoders] Re: JS - How to send a byteArray using HTTPService??

2007-10-29 Thread Jeff Schuenke
Hello Abdul, I have looked at URLLoader and see how to send. On the server side, I see the data in a byte array but am not sure how to pull this inot a variable. Any samples from either php or java? Thanks, Jeff --- In flexcoders@yahoogroups.com, Abdul Qabiz [EMAIL PROTECTED] wrote: Note

[flexcoders] Re: JS - How to send a byteArray using HTTPService??

2007-10-29 Thread andrewrbateman
HTTPService only allows text. You can however convert the ByteArray into Base64 and then transfer it via HTTPService. Note that this can be quite large, so you may want to encode it as JPEG first. There are two advantages to doing this...reduced network traffic, and you also then have the data in

Re: [flexcoders] Re: JS - How to send a byteArray using HTTPService??

2007-10-29 Thread Abdul Qabiz
I think, you can use AMFPHP on server-side. You can refer the following tutorial:- http://www.sephiroth.it/tutorials/flashPHP/amfphp_bytearray/ http://www.bytearray.org/?p=90 -abdul On 10/29/07, Jeff Schuenke [EMAIL PROTECTED] wrote: Hello Abdul, I have looked at URLLoader and see how to