If your fields are all file uploads, then you probably can't get them
through the regular HttpServletRequest.getParameter().  I'm curious
though, what do you get from the first element ("file0").  Is it the
file contents?


What you need to do is submit the form as multipart form, and process
posted boundaries.
This article has everything that you'll need:
http://www.javaworld.com/javaworld/jw-06-2001/jw-0622-filters-p4.html

Don't forget to modify your form like this:
<form method="post" action="/repository/getit" name="form"
enctype="multipart/form-data">


On Fri, 3 Sep 2004 12:21:52 +0100 , [EMAIL PROTECTED]
<[EMAIL PROTECTED]> wrote:
> 
> 
>     -----Original Message-----
>     From: Ralph Einfeldt
>     <form method="get" ...>
> 
>     </form>
> 
>     the query string can be found in the access log.
>     (This might be turned of)
> How do I enable it please?
> 
>     From your last post with the source I think that each input
>     tag has it's own form so only one field is submitted.
> 
> I noted that the jscript adds extra input elements
> within the form, hence there are many, each with a differing
> name attribute. All within the same form.
> 
> regards DaveP
> 
> 
> 
> --
> DISCLAIMER:
> 
> NOTICE: The information contained in this email and any attachments is
> confidential and may be privileged. If you are not the intended
> recipient you should not use, disclose, distribute or copy any of the
> content of it or of any attachment; you are requested to notify the
> sender immediately of your receipt of the email and then to delete it
> and any attachments from your system.
> 
> RNIB endeavours to ensure that emails and any attachments generated by
> its staff are free from viruses or other contaminants. However, it
> cannot accept any responsibility for any  such which are transmitted.
> We therefore recommend you scan all attachments.
> 
> Please note that the statements and views expressed in this email and
> any attachments are those of the author and do not necessarily represent
> those of RNIB.
> 
> RNIB Registered Charity Number: 226227
> 
> Website: http://www.rnib.org.uk
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to