How to view documents stored in the AIR application in the browser?
We have an AIR client which talks to a WAMP server. We store documents. One of the customer requirement is: they want to their website users to view the documents stored in the AIR application. It should be a read only access. The users will not have our air client 开发者_JS百科installed on their machines. All they do is to check the customer's website. How can I implement this, please let me know.
Thanks
Vish.You need to workout a system to send files to the server eventually store then in a Database. You can use a web service for both, sending files (base64encode -> send -> base64decode at destination) as well as running queries if needed.
精彩评论