The Adobe docs (I can't find which) state that Flash can read Shared Objects (.SOL files?) off a server. This could be an interesting way to store data and retrieve it client-side. Any ideas on how to do this?
Flash server-side Shared Objects - LSOs
668 Views Asked by Robin Rodricks At
1
There are 1 best solutions below
Related Questions in FLASH
- How to create an ActionScript 3.0 in Flash to display Current Date, Time and Day of Week
- textinput.needsSoftKeyboard does not work (air for android)
- Flash erase image with mask - gotoandplay next frame
- Flash CS3: Text appears on button mouse over or text mouse over
- import a sound externally or from the library? AS3
- How to use Database in Flash App?
- undefined method loadCompressedDataFromByteArray through a reference with static type flash.media:Sound
- Cam streaming Flash client/widget
- Pairing a draggable object to a target object in AS3
- update flashVars of flowplayer to change video via swfObject
- Adobe Flash Pro: Locate asset with missing font
- Making an HTML Jigsaw Puzzle in Flash CC
- Passing data between MXML files and opening one after Click on another
- Moving things inside a two-dimensional array in as3?
- AS3 + webcam. Dispatch event on presence
Related Questions in ACTIONSCRIPT
- How to create an ActionScript 3.0 in Flash to display Current Date, Time and Day of Week
- call Win32 API in flex to set Window Display Affinity
- Adding a listener to a VerticalScrollBar in flex
- Ruby server +ActionScript3
- Cam streaming Flash client/widget
- There is no save() method in FileReference Class of Flex
- Passing data between MXML files and opening one after Click on another
- Graphing a mathematical equation in AS2
- Check if item exists in XML with AS3
- Move a character in flash randomly
- Actionscript 3 Search for string in array
- Change color of text in ActionScript3 after exact character
- Strange flex module behavior.Module become null when add a little nonsense code
- Error Message not generated
- streamed video stop playing in actionscript
Related Questions in DATA-ACCESS
- SQL Server: The type initializer for 'Oracle.DataAccess.Client.OracleParameter' threw an exception
- Oracle.DataAccess references break everytime that I get latest from TFS using VS2015
- need elaborate info on IBM DB2 error tokens while getting DataAccessException via hibernate
- pooled connection timed out
- What is the Best Way to Perform Geo Spatial Searches with Entity Framework Code First CTP 5?
- Modernising a 'Hand Rolled' Data Access Library
- Best way to insert values multiple times from data layer to stored procedure?
- How should we use ASP.NET Data Access Classes (Converting from ColdFusion)
- Fast SQL question about multiple month dates
- Reading parts of large files from drive
- What's the point of ORM If I have to define every field in app.config for Oracle .net Entity Framework
- The type Database cannot be constructed. You must configure the container to supply this value (EntLib 5 + ODP.NET)
- painless way to move the data access from desktop application to wcf service
- Specialize or generalize transfer objects and operations over large datasets?
- Neon on Android limited by memory access?
Related Questions in LOCAL-SHARED-OBJECT
- Why is my local shared object of flash deleted as soon as I close my swf
- ActionScript 3 (AS3) Gathering data from a SharedObject
- Do Flash Locale Shared Objects behave like cookies?
- Flash Actionscript 3 - Simple Btn Click save game/app
- Save movieclip location Rotation and x and y
- Something like cookies in Flash/ActionScript
- Local Shared Object localPath
- Where should a Python package store compiled libraries?
- AS3: How to detect the local storage popup window in Flash?
- SharedObject and Dictionary problems in Flash Builder
- Flash server-side Shared Objects - LSOs
- Saving MovieClips and ActionScripts - Flash Shared Objects LSOs
- AS3 sharedObject - How to load my last sharedObject on a btnCLICK
- shared library how to link to a symbol?
- Flex: How to detect if user has blocked shared object from writing
Related Questions in LSO
- Restoring custom class object array from SharedObject
- Can I Disable the Creation and Storage of LSO or Flash Cookie By Disable Adobe Flash Player?
- Are Cross Domain Flash Local Shared Objects (LSO aka Flash Cookie) possible
- Flash server-side Shared Objects - LSOs
- Is there any provision in android to know which user application is using which system service
- Read and process data from a flash cookie
- Flash cookie (Local Shared Object) - creates wrong paths through browsers
- LSOs deleted in latest browsers
- IE9 misbehavior with object array
- Can Windivert injects packets larger than MTU?
- AS3: Storing array of custom classes in a Locally Shared Object (LSO)
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Firstly, .SOL files and LocalSharedObject are purely, as their name implies, local datas. They are stored on the client, not on the server, and could be compared to cookies, or save files. But they are not server-side.
If you want to store data on the server and retrieve it client-side, you have a lot of techniques, depending on what you want/can install on your server.
The most obvious one certainly is using a web-service in the language of your choice, and access it via your Flash application.
You can also use ActionScript Remoting capabilities to call server-side methods to store and retrieve objects. You have to find the proper library for your language. AMFPHP is the reference for php, I know some library also exists for .NET and Java. Here is an example using php
Finally, you can use Flash Media Server which is a proprietary Adobe technology. I don't have much experience with it, but you should be able to find useful ressources here