My web site has a download of a file of about 10Mb. I can have it stored in more than one server and was thinking of a way to offer the download to the best performing server (performance measured from the client's side, testing from the own server could lead to unreliable results as the download could go though different paths)
Do you think this is realistic? I have no experience with Ajax but by what I've seen a path could be creating an XMLHttpRequest object and do some request to the server asynchronously, on receipt of a response I could update the actual download address (having a default one for the case there's no response when the user starts the download). Do you tink it's that a good idea? (and for the case I am inventing the wheel please let me know where is one ready :-)
Thanks!