I want to cast httpServletRequest to multipartHttpServletRequest. When I try this, a ClassCastException occurs.

MultipartHttpServletRequest request = (MultipartHttpServletRequest)req;

This error occurred only for AJAX call, for form submit it doesn't happen.

I've done all necessary steps as follows:

  1. Use commons-fileupload.jar
  2. Set enctype="multipart/form-data"
  3. Define multiparResolver bean in spring context.

Please help.

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

Yes, through Ajax you cannot upload file content, so as request not having any file content spring cannot prepare MultipartHttpServletRequest, which causes ClassCastException. Then you have to use technique of using iframe in html to upload file while giving ajax style upload.

link|improve this answer
can pls explain more about how to use iframe in html to upload file with ajax – Sachin J Jan 10 at 11:51
But the concept is simple. Whatever appearing on screen as form we capture that form values on submit(by returning false for not submitting that) and prepare hidden iframe on the fly in javascript and preparing the same form and form elements with same values and submits that iframe. There are lot of tutorial on how we can do this using javascript and iframe. google for 'using iframe for file uploads' to understand how we can do this. – Pokuri Jan 10 at 12:08
feedback

To get the MultipartHttpServletRequest , try this

 MultipartHttpServletRequest multiPartRequest = new DefaultMultipartHttpServletRequest(req);
link|improve this answer
Thanks for reply. I am trying this but java.lang.IllegalStateException: Multipart request not initialized exception occurred. – Sachin J Jan 10 at 6:43
Please read the link of MultipartHttpServletRequest here and see what you're missing . – Aravind A Jan 10 at 6:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.