Hi, hopefully simple question here, I'm trying to use setPostParam() to get extra info on the uploaded files.
final Uploader uploader = new Uploader();
JSONObject params2 = new JSONObject();
params2.put("post_param_name_1", new JSONString("test"));
uploader.setPostParams(params2);
However this param never seems to make it to the FileUploadServlet? There is nothing in the:
HttpServletRequest req.getParameterMap()
I'm using the latest GWT with no flash.
Thank you
Tek
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi, hopefully simple question here, I'm trying to use setPostParam() to get extra info on the uploaded files.
However this param never seems to make it to the FileUploadServlet? There is nothing in the:
HttpServletRequest req.getParameterMap()
I'm using the latest GWT with no flash.
Thank you
Tek
Never Mind.... :-)
Servlet 3.0 issue. For everyone else...