Is there any way to upload files from a flex app to a rails 2.2 backend when using the default Cookie Session Store?
|
1
|
|
|
|
|
|
A detailed blog posted on this topic (using rack) is available on: |
||
|
|
|
|
No. The reason it doesn't work is because Flex does not transmit the cookies when using FileReference#upload. A workaround (for Rails 2.3) is to insert a custom middleware handler for flash requests that takes arguments in the query string and adds them to the HTTP_COOKIE environment before it reaches Rails.
Make sure the file is in your load path and add it to your session_store.rb:
Then you'll need to output the session key to a view somewhere and load it using ExternalInterface inside of Flex:
As you can see I have resource called uploads and I use the I honestly don't remember where I found this information online, but I can't take the credit for it. Hope it makes sense for you. |
||
|
|
|
I would like to know it aswell. Working on that right now. |
||
|
|
|
|
Well, this is something which I'd love to know as well. There are just too many outdated posts and articles hanging around the internet to find a working solution, since Rails is an ever-changing framework... If anyone figures out how to do this, please do give a shout. Cheers |
||
|
|
