I am using the fine-uploader to allow multiple file uploads. The files are uploaded 1 by 1 by the fine-uploader library, and on the 'complete' event, which fires every time a file has uploaded successfully, I call a function that calls a web service and makes some updates to my database.
Potentially a user could update 100, or a 1000 files at a time.
My question is do i need to do anything specific to the JavaScript or Web services so that repeated requests do not cause a problem. I know that the $.ajax function is asynchronous by default, is this enough to ensure that problems don't occur?
$.ajax- it just delegates toXMLHttpRequestwhich sends all requests asynchronously by default. It's not clear what "problems" you are worried about. If you can elaborate, perhaps you can get some more specific answers.