RE: Problem with filter and calling Perl-script with Tomcat 5.5.20

2006-10-19 Thread Gunnar.Bostrom
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.

Re: Problem with filter and calling Perl-script with Tomcat 5.5.20

2006-10-18 Thread Mark Thomas
[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

RE: Problem with filter and calling Perl-script with Tomcat 5.5.20

2006-10-18 Thread Gunnar.Bostrom
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

Re: Problem with filter and calling Perl-script with Tomcat 5.5.20

2006-10-16 Thread Martin Gainty
Gunnar- String AStringWhichHoldsPostedOrQSValue; if(HttpServletRequest.getMethod() == "POST") { //Post only AStringWhichHoldsPostedOrQSValue = HttpServletRequest.getParameter("whatever"); } else { //Get Only.. AStringWhichHoldsPostedOrQSValue = HttpServletRequest.getQueryString(); } It has be