java.io.IOException: Posted content type isn't multipart/form-data
843835Aug 12 2002 — edited Dec 6 2007I'm getting the following error:
java.io.IOException: Posted content type isn't multipart/form-data
I'm trying to do a form that will post text as well as upload a file..
I'm doing the following for "normal" form data
MultipartFormDataRequest mrequest = new MultipartFormDataRequest(request);
mrequest.getParameter("productType");
It was actually working fine, and just started giving that error.. Any ideas on how to fix this?
-Michael