Hi dolly !!!
A request's parameter is a pair String/String.
request.getParameter("name"); will return you a
String Here name is a File you cannot get it with the method getParameter().
You have two posibilities:
Retrieve the body as character data using BufferedReader with the method getReader(). (public BufferedReader getReader() throws IOException )
Retrieve the body of the request as binary data using ServletInputStream with getInputStream(). (public ServletInputStream getInputStream() throws IOException )
Hope It help.
[ December 28, 2007: Message edited by: Collins Mbianda ]