calling servlet on submiting formpanel in gwt
问题 I am trying to call a servlet when submitting the FormPanel in GWT.I am setting the url on form.setAction("myurl") and also done mapping on the web.xml but while on the form suvmit the servlet is not called.Here is the code: public class MainEntryPoint implements EntryPoint { public void onModuleLoad() { AbsolutePanel panel=new AbsolutePanel(); FileUpload upload = new FileUpload(); upload.setName("file"); final FormPanel form = new FormPanel(); form.setWidget(panel); form.setMethod(FormPanel