Hi Mark,
You are absolutly right.
I changed my filter and the CGI.pm as you proposed and it now works for POST
and GET but NOT with multipart forms.
I've looked into the CGI.pm to see if there was a similar change for multpart
but I have not found any and my perl knowledge is not good enough.
[EMAIL PROTECTED] wrote:
> Hi,
>
> We need the fix for multipart forms introduced in 5.5.20 so go back to
> version 5.5.17 is not an option.
>
> But the problem seems even worse because forms POST'ed does not work with the
> CGI module!
>
> We have to many Perl-scripts that use the CGI-module
Hi,
We need the fix for multipart forms introduced in 5.5.20 so go back to version
5.5.17 is not an option.
But the problem seems even worse because forms POST'ed does not work with the
CGI module!
We have to many Perl-scripts that use the CGI-module so rewriting them to read
directly from s
Gunnar-
String AStringWhichHoldsPostedOrQSValue;
if(HttpServletRequest.getMethod() == "POST")
{ //Post only
AStringWhichHoldsPostedOrQSValue = HttpServletRequest.getParameter("whatever");
}
else
{ //Get Only..
AStringWhichHoldsPostedOrQSValue = HttpServletRequest.getQueryString();
}
It has be