Hello,
I'm working on a project in GWT, however, I need to store the uploaded files on my personal web server.
The user will upload the files using GWT, my back end will store the files information in AppEngine's database and send the file to the server.
I'm thinking of creating a PHP script on the web server that will handle the files coming from GWT and sends the files as needed.
Also, I'm planning on validating the IP address of the request.
My concerns are:
- Is validating the IP address from which the request came good enough to ensure no one misuses the PHP script?
- How can GWT's server send the file to PHP?
- Is there a better way to do this?
Thanks in advance