I want to write a browser based app that retrieves data from multiple websites and posts it to my server app. What are the best options to do this?
The most straightforward approach would certainly be to have the server app retrieve the data, but that's not possible for copyright reasons. In my case individual users do have the right to access the data but my server app doesn't. So the request has to originate from the user's machine.
This is not a scheme to circumvent copyright law as the data is never published. It's made available to authorized users only. The problem is simply how to use a web app as an extension of the users's desktop.
It would be a trivial and legal thing to do with a desktop app, but I don't want to force users to download and install software. So my question is if anyone knows how this can be achieved with browser extensions, silverlight, flash, etc and what the limitations of each approach would be.
Thanks in advance for your help