I am tring to upload images using image_servlet.
the request is passing from product
servlet to save_images
servlet
req.getRequestDispatcher("save_images").forward(req, resp);
jsp code
<form action="../save_images" method="POST" enctype="multipart/form-data">
//img tags in here
</form>
but I got this error
org.apache.commons.fileupload.FileUploadBase$InvalidContentTypeException: the request doesn't contain a multipart/form-data or multipart/mixed stream, content type header is application/x-www-form-urlencoded
I am uploading jpg images. anyone have an idea above this error.