I looked for this thread, but I didn't found it.
I am using Google Gears and Desktop to select multiple images.
I reduce the size with canvas, and upload to our company web server.
(to save time, I reduce and upload instead of upload and reduce)
Now I have to store the thumbnailed image and full size images.
To don't lose the save of upload time, as I have multiple offices with a
local server for each office,
I thought to send the thumbnail to the web server, and the full size image
to the lan server.
But for "security reasons" the xmlhttprequest cant send to a server
different to the javascript runing server.
I am trying to do the next :
MyPC -> PickFiles
Send ThumbSize to -> WebServer
Send FullSize to -> LocalServer
Some ideas ??
I tried with a form and an input file type, but I cant set the origin of the
input, and I won't select the files one by one.
Thanks to all.