Hello,

I am developing an internationalized web application.
I am using tomcat 3.2.2 (but the problem I have encountered
also concern Iplanet 6.1)

I need to be able to process forms submitted in UTF-8,
so I POST my data using the multipart/form-data enctype.

My Front Controller servlet can recognize such posting,
handle it and create a 'FormDataRequest' which is a 
kind of wrapper around the original HttpServletRequest.
This FormDataRequest also implements the HttpServletRequest interface.
It simply intercept all methods dealing with parameters, the other methods
are simply invoking their counterpart on the original HttpServletRequest.

Later on, during the request processing, I need to do 2 things:
a 'forward' and some 'include.

To do so I need to pass to the RequestDispatcher the HttpServletRequest (i.e. my 
FormDataRequest),
for example:

request.getRequestDispatcher(page.getViewName(PARENT)).forward(request, response);   

Unfortunately this does not work, because apparently the implementation
of forward (or include) is doing a cast of the request and expects the
'vendor' implementation request, as a result I cannot 
pass my wrapper, which is I remind you a perfectly valid HttpServletRequest.
So instead I pass the original request, but this is a bit annoying as later on
in the JSP I can't use any 

<%= request.getParameter("paramName") %>

(original request can't handle multipart/form-data posting)

to circumvent this I have created a RequestTag that is going to get the
parameter value from my wrapper.

So my problem is resolved, it works fine, but I am still wondering:
 - is there a simpler solution?
 - can we consider as a bug the fact that 'forward' or 'include' won't accept my 
wrapper?

Thanks in advance for any feedbacks on the topic!

Nicolas.



_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


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

Reply via email to