Questions tagged [gwtupload]

file upload library for GWT including client and server classes

GWTUpload is a library for uploading files to web servers. It has two components written in java, the server side with servlet and utility classes, and the client side that is compiled into javascript using gwt. There are different Uploader types available like SingleUploader and MultiUploader, handling the amount of files which can be uploaded. The Uploader also supports a restriction to a list of valid extensions.

45 questions
6
votes
1 answer

Apache File Upload Exception while uploading files greater than 2 MB

I get the following exception while uploading a file using gwt upload, while everything works fine while uploading a small file <2MB this error occurs when I try to upload a file of > 2MB file 2014-02-07 01:40:55 UploadServlet [INFO] UPLOAD-SERVLET…
Caadi0
  • 504
  • 8
  • 23
4
votes
1 answer

GWT fileupload, file not being sent in the POST

I am struggling with a simple file uploading using GWT 2.4 + gwtupload 0.6.4 library. Here is the relevant part of my dialog ui.xml: Import…
jabal
  • 11,987
  • 12
  • 51
  • 99
4
votes
1 answer

GWT Java - "getWidget()" is deprecated - what replaces it?

I am loading images using code (please see below) I found through stackoverflow. However, I now notice that the "getWidget()" is deprecated. Rather than wait until this is no longer available I would like to fix this now. What should I use instead…
Glyn
  • 1,933
  • 5
  • 37
  • 60
3
votes
2 answers

File upload with a progress bar, or accessing the Html 5 File Api from Google Web Toolkit?

I'm looking for a way to do file uploads, with a custom progress bar, with google web toolkit. Not looking for a plugin which shows its own progress bar, I'm rather looking for something which will call my callback method and notify it of progress,…
Ali
  • 261,656
  • 265
  • 575
  • 769
2
votes
0 answers

Firefox fails to post form when upload file > 500kb using gwtupload

I'm developing an application using gwt and using gwtupload (version 0.6.4) to perform file uploads. The file upload works in all browsers tested (Chrome, IE 9, FF 8/9). However, when using Firefox, if the file to be uploaded is > 500kb in size FF…
price
  • 31
  • 5
2
votes
1 answer

Sent request parameters to UploadAction in gwt-upload

I get gwt-upload working in a GAE application. As suggested, I implemented a Custom UploadAction to handle the storage of the file in the DataStore. The code goes like this: public String executeAction(HttpServletRequest request, …
Carlos Gavidia-Calderon
  • 7,145
  • 9
  • 34
  • 59
2
votes
1 answer

How to have a custom upload button in gwt multiuploader

I am having a hard time in changing the UI of GWT Multiuploader. Currently it shows a tiny "Choose Files" button multiuploader's default choose file button by clicking on which a new window opens to upload a local file. My requirement is that i…
2
votes
0 answers

gwtupload conflict with Activities and places framework

I have a GWT application which has an upload feature, and it works fine with gwtupload However, it doesn't work after I setup Activities and places framework. It gives the following submit error: Unable to auto submit the form, it seems your…
Askar
  • 544
  • 1
  • 6
  • 17
2
votes
1 answer

GWT error when uploading file with SingleUploader

I used SingleUploader for uploading file in my Google Web Toolkit project which is deployed to Tomcat. Whenever I tried to upload a file, it prompted this error: "Error, your browser has not sent any information. Please try again or try using…
Tony Vu
  • 4,251
  • 3
  • 31
  • 38
2
votes
3 answers

Upload multiple files at once using GWT

I'm desperately trying to enable the multiple-property to users of my webside. User should be able to upload a bunch of PDF-files to my server without choosing each file separately. I'm using gwt-upload for my uploads. Sadly the MultiUploader does…
tommueller
  • 2,358
  • 2
  • 32
  • 44
1
vote
1 answer

GWTUpload add extra information

I'm using the GWTUpload lib for uploading, which works nicely. On the server side I override the executeAction() method of the UploadAction class. But now I would somehow like to send some more information to the server e.g. to map the uploaded…
Franz Kafka
  • 10,623
  • 20
  • 93
  • 149
1
vote
1 answer

GWT Upload by Manuel Carrasco Moñino Issue

I am using this gwt upload system here(http://code.google.com/p/gwtupload/). I am getting some problems with it. Show to feed it with a path from the client Get the path on the server where the file was saved set a path on the server where the file…
Noor
  • 19,638
  • 38
  • 136
  • 254
1
vote
1 answer

GWTUpload - max file size context param not working

I want to upload a bigger file (6 MB) with GWT upload. By default it allows only files with a maximum size of ~3 MB. Therefore I adjusted my web.xml with the following context params:
jan
  • 3,923
  • 9
  • 38
  • 78
1
vote
0 answers

Rest easy file upload not working - could not find writer for content-type multipart/form-data type

I am working on a project in which server side I have used REST Service for my APIs.These API are working fine from RESTClient plugin. Now I am invoking these REST API from a servlet code.After exploration I came to know REST Easy will be best…
Ajay Yadav
  • 1,625
  • 4
  • 19
  • 29
1
vote
1 answer

How to set path for gwt upload on ubuntu server

I'm using GWT widget to upload my files, I'd like to upload them under tomcat folder on Ubuntu server, so I need to set the param value for this piece of code in web.xml: Location to store uploaded…
django
  • 153
  • 1
  • 5
  • 19
1
2 3