Hi,
I have a web app that will produce some output data in JSON format. I need to get that data to a private PC where it will be processed and further outputs produced and emailed back to a registered user.
Question is what is the best way to transfer the data. There will be many users of the web app but only one 'process' PC.
Not something I know a lot about. I thought of a couple of ways but they don't seem to be that effective and surely there is a better way.
1. WebApp uses AJAX to transfer data to web server php which sends the data via email to the private PC. Customised email client receives email and extracts data OR
2. WebApp uses AJAX to create a data file on web server. Every X minutes the PC checks the web server via FTP and collects any new data files for process.
3. WA uses AJAC to create data file. PHP sends email with attached data file to Dropbox email uploader, Dropbox account linked to PC. Local software watches Dropbox folder for arriving data files.
All seem overly complicated,but not sure what typical procedure would be for this type of data exchange.
Any direction appreciated.
Thanks
K