Thanks Ben,
I understood the problem clearly. In multipart request request.getParameter() does not work,I knew. Also I got those type of parameters after checking FileItem's isFormField() method and
fileItemObject.getName()
fileItemObject.getString() methods. No problem.
My problem is how I can get session attributes set in a
jsp,that has multipart/form-data form. I tried for the multipart form and got the session attribute as null. If the request is not multipart, result comes.
If I tried the following
NewsList newsList=(NewsList)request.getSession().getAttribute("newsList");
I got the newsList Object as null. This is not null If I try with non-multipart request.
Best Regards,
Ramesh Kangamuthu