in this form do the following:
panel.setAction(GWT.getModuleBaseURL() + "UploadServletHere");
panel.setEncoding(FormPanel.Encoding.MULTIPART);
panel.setMethod(FormPanel.Method.POST);
And then somewhere in the form where you submit your form (click button), add this:
panel.submit();
Also, make sure you make the correct HttpServlet, where you can cut your request into different fields.
, , .