Community
Participate
Working Groups
If you use an "input" element of type "file" to upload multiple files (HTML 5), for example: <form action=myapp/upload" method="post" enctype="multipart/form-data"> <input type="file" name="files" multiple="multiple" /> <input type="submit"> </form> In the target servlet the method request#getParts() returns always only one result. That happens because the name "files" in this case is the same for each part.
Fixed in jetty-8 rev 2511.