The call uploadHandler.parseRequest(request) fails - I get the error that my request is not multipart/form-data.
My
jsp:
<form action="attachments" method="post" name="files" enctype="multipart/form-data" >
.....
<input type="file" id="dataFile" name="datafile" size="80" accept="image/gif, image/jpeg, image/png, image/jpg">
....
</form>
When I call request.getContentType, null is returned. It doesn't seem that the header is being set by the enctype parameter.
Any ideas?