public class Relay extends HttpServlet { @Override public void service(HttpServletRequest request, HttpServletResponse response) throws Servl
Parameters encoded with multipart/form-data are sent in POST body - not as regular request parameters, therefore can't be read using request.getParamter(...).
multipart/form-data
request.getParamter(...)
Check out Commons file upload package for multipart requests processing.