getInputStream could do it for you, but I'm not sure that you are allowed to
call this method.
that way you would have to translate the request yourself.
if that doesn't work, I'm clueless about the order of the parameters.

what you could do, is to make sure your parameters are named alphabetically
on the client, and then sort them on the server.

Filip

public ServletInputStream getInputStream()
                                  throws java.io.IOException
Retrieves the body of the request as binary data using a ServletInputStream.
Either this method or getReader() may be called to read the body, not both.
Returns: a ServletInputStream object containing the body of the request
Throws:  IllegalStateException - if the getReader() method has already been
called for this request
java.io.IOException - if an input or output exception occurred

~
Namaste - I bow to the divine in you
~
Filip Hanik
Software Architect
[EMAIL PROTECTED]
www.filip.net

> -----Original Message-----
> From: Krzysztof Zielinski [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, March 27, 2001 9:56 AM
> To: Filip Hanik
> Subject: Re[4]: How to get request prameters in right order.
>
>
> Hello Filip,
>
> Tuesday, March 27, 2001, 7:24:27 PM, you wrote:
>
> FH> public java.lang.String getQueryString()
> FH> in HTTPServletRequest and you can parse them yourself
>
> I'm afraid that parameters passed by the help method="post" in HTML
> Form aren't available by getQueryString().
>
> I can't use method="get" in HTML Form.
>
>
> --
> Best regards,
>  Krzysztof                            mailto:[EMAIL PROTECTED]
>   ICQ # 47933362
>
>
>

Reply via email to