Tagged Questions
4
votes
0answers
761 views
Spring MVC multiple file upload with HTML5 multiple file form feature
I am trying to upload multiple files using spring 3.1.2 with @Controller and @RequestMapping.
Here's what I did and my configuration.
Html5 form :
<form action="addFileSystemImage.foo" ...
2
votes
0answers
246 views
File Upload progress on IE9
I've read in a few places that file upload progress is not supported in IE9.
However I notice that gmail has some sort of solution for it. I've read articles from a couple of years ago that it is a ...
2
votes
0answers
2k views
Multiple image resize and upload with description
I'm looking for a way to upload multiple images with description. Users will be uploading 1-10 images of quite a large size from cameras so it's better if the images get resized before upload.
...
2
votes
0answers
417 views
File API Upload - XMLHttpRequest onload event not firing on larger files
I'm using the new File API for uploading files to my site. I have everything working as expected. Files are submitted and uploaded successfully.
The only problem I'm finding is that my onload event ...
1
vote
0answers
100 views
How to use Sinon on mocha to mock input type=“file” for AJAX testing
I got a unit test on Mocha, and I'm testing form submission through AJAX.
Since you can't fill the <input type="file"> manually, and I'm looking for automated tests, I need to know whats the ...
1
vote
0answers
54 views
Does HTML5 File API save the downloading file?
In my example I'm trying to browse a file from a desktop through the html file.
Is it possible to save the browsed file in some server or place it in some place?
Please let me know if this is ...
1
vote
0answers
307 views
Using HTML5 & Coldfusion 10 to upload multiple files to different destinations
I have a form with several input fields that accept multiple files and I need to load the files from each element to a different destination. cffile upload only uploads the first file from each form ...
1
vote
0answers
64 views
How do I submit a complex form (including files) via AJAX?
I'm looking for a mechanism by which to ajax-submit a rather complex form. Think "email in a browser". I have multiple "dropboxes" to allow users to drag-and-drop file attachments, but I also need ...
1
vote
0answers
289 views
How should I implement client side encryption in a jQuery file upload plugin?
I am trying to implement client side encryption in the jQuery File Upload Plugin. I have tried to follow some information I found along the lines of...
iterate over the files array,
replace each ...
1
vote
0answers
119 views
is it possible to set the contents (data) of a file upload input via javascript?
i am using html5 canvas to alter an image. i would like to be able to use the resulting canvas image data to send to the server using the same file upload field. (alternately, it could be by adding ...
1
vote
0answers
72 views
Passing session using jQuery.html5Uploader
I am using the jQuery.html5Uploader plugin. The CMS i am using checks if a user is logged in before delivering any pages out. So i need to pass some additional parameters when uploading one or more ...
1
vote
0answers
385 views
How can I upload a file, cross domain, via Ajax (File API) to a NodeJS (Express) server?
I've been browsing the net and SO for the answer to this but I have come up short.
I have a NodeJS server (with express) on one domain that acts as a stateless API. It can receive a POST request that ...
1
vote
0answers
272 views
Comparison in HTML5 huge vs small chunk file size
What would be the bottleneck for fast performance file upload aside from internet connection of course.
HTML 5 have file api for slicing file into chunk.
what would make better performance in ...
1
vote
0answers
489 views
HTML 5 File API - Upload File to Server via JQuery
I have an ASP.NET MVC application. I'm trying to let the user upload files to the server. I need to use the HTML 5 File API. Currently, I have the following code:
<div><input ...
1
vote
0answers
341 views
How to use dojox.form.Uploader (new html5 uploader) to upload multiple files to a server requiring OAuth?
I'm trying to upload files to a server that requires OAuth signature of the POST url. I'm trying to do this with dojo html5 uploader widget that lets user select multiple files (dojox.form.Uploader).
...