Try this ....to get parameters while using MultipartRequest
Properties pOut=new Properties.....
try {
MultipartRequest multi =new MultipartRequest
                  (req,destHome, 5 * 1024 * 1024);

Enumeration params = multi.getParameterNames();
while (params.hasMoreElements()) {
   String name = (String)params.nextElement();
   String value = multi.getParameter(name);
  pOut.put(name,value);
}

Hope this will help
shibi


Enter your default signature here
Sent by Indya Messaging Service

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to