[flexcoders] Re: #2038: File I/O Error only in firefox

2008-07-02 Thread Mike Paul Pavlasek
Here is a bug in Flash Player (Firefox + SSL), please vote for it, http://bugs.adobe.com/jira/browse/FP-201 (probably a duplicity for http://bugs.adobe.com/jira/browse/FP-78 but assigned to another person ;) ) CoPLaS --- In flexcoders@yahoogroups.com, Jon Bradley [EMAIL PROTECTED] wrote: I'm

Re: [flexcoders] Re: #2038: File I/O Error only in firefox

2008-06-06 Thread Dennis Falling
I finally got around to implementing the fix and am having issues on the server... It basically is thinking that the ;jsessionid... is part of the command name being called: UnsupportedCommandException: cmd 'uploadfile;jsessionid=4913B7A92119CA91D683D8F884829475' is not supported. Anyone know a

[flexcoders] Re: #2038: File I/O Error only in firefox

2008-06-05 Thread Dennis Falling
I have this problem for standard uploads too, not just SSL... Again, it works fine in IE, so I know that the address and file are valid. Any ideas? On Wed, Jun 4, 2008 at 1:48 PM, Dennis Falling [EMAIL PROTECTED] wrote: I searched the web and the group and found a thread going about this

Re: [flexcoders] Re: #2038: File I/O Error only in firefox

2008-06-05 Thread Jon Bradley
I'm guessing it's because the session is not retained when performing a file upload to the server - a new session id is created for each FileReference upload attempt. This is a known issue with various workarounds. Modify your server code to ignore any session or login details to be sure

Re: [flexcoders] Re: #2038: File I/O Error only in firefox

2008-06-05 Thread Dennis Falling
Thanks for the reply... That information was exactly what I needed. I'm actually really surprised that I hadn't run across any of it- I've spent several hours googling trying to find a solution. Thanks a lot! -dennis On Thu, Jun 5, 2008 at 12:12 PM, Jon Bradley [EMAIL PROTECTED] wrote: