Re: [flexcoders] Upload with parameters

2008-02-09 Thread Fidel Viegas
Hi guys, It seems to be working, but only with GET parameters. The POST parameters never show up. I was wondering if it wasn't working because of the frame rate. I am using the default frame rate generated. Does the frame rate afect the transfer of the files? Thanks in advance, Fidel.

Re: [flexcoders] Upload with parameters

2008-02-08 Thread Ben Marchbanks
Try fileRef.upload(request); versus fileRef.upload(request, uploadfile); Fidel Viegas wrote: Hello folks, I am experiencing a weird problem. I have the following code: var request:URLRequest = new URLRequest(http://localhost:9090/docapp/upload.jsp

Re: [flexcoders] Upload with parameters

2008-02-08 Thread Fidel Viegas
On Feb 8, 2008 11:45 PM, Ben Marchbanks [EMAIL PROTECTED] wrote: Try fileRef.upload(request); versus fileRef.upload(request, uploadfile); Done that. Problem persists.