I am using Struts 1.0. According to the Javadoc, the
MultipartRequestWrapper.getParameter() method does the following:
/**
* Attempts to get a parameter for this request. It first looks in the
* underlying HttpServletRequest object for the parameter, and if that
* doesn't exist it looks for the parameters retrieved from the
multipart
* request
*/
And the source code does this by first checking request.getParameter() and
then (optionally) checking parameters.get(). However, the 'parameters' Map
field is never initialized to include the parameters from a multipart
request. This appears to be a bug - or am I missing something?
Thanks.
- Brian
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>