vote up 1 vote down star

Hello All, I am new to JQuery AJAX . I want to implement a file upload using a jquery. Will it be possible to make a fileupload with JQuery,AJAX and send it to Servlet which can use apache file commons to upload the file. Can anyone please advice me how to proceed further?

Thanks, Deepthi.

flag

5 Answers

vote up 4 vote down

Try Uplodify

link|flag
Yeah +1, I use it it's nice... that is all. – marcgg Dec 11 at 15:02
vote up 1 vote down

This is not a jQuery solution but take a look at http://www.swfupload.org. I have used that component in the past to give the ajax / flickr like upload interface. Works great and is fairly easy to integrate into your site. There is a ton of demos at http://demo.swfupload.org too.

link|flag
vote up -2 vote down

Hi,

you can use Silverlight upload.

Grz, Kris.

link|flag
He's using JSP/Servlet. – BalusC Dec 11 at 15:02
vote up 0 vote down

Ajax in the traditional sense is XMLHttpRequest, which does not allow you encode and send local files to a server.

The common ways of doing uploading through "ajax" means, is to either use a Flash swf to handle the uploading on the same page, or to use a form that has a target of an invisible 1x1 iframe. You have some Javascript show a uploading spinner or whichever. After the file is uploaded, make the server return some Javascript to the iframe like

<script type="text/javascript">
top.MyProject.doneUploading();
</script>

top will allow you to call Javascript in the regular page. In order for that to work though, you must make sure the iframe has submitted to the same domain that the top document is located at.

link|flag
vote up 0 vote down

I had several problems using Uploadify so I turned to ajax upload

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.