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

Re: Problem with filter

2006-03-09 Thread Franck Borel
Hi Markus, thank you very much. Who is able to read has some advantages :-). Ok, this resovle my problem and now it works. Greetings - Franck > Franck Borel wrote: > > Hi all, > > > > I am using tomcat 5.5 and I am trying to implement a filter. > > Now, I have setted the xmlValidation to "true

Re: Problem with filter

2006-03-09 Thread Markus Schönhaber
Franck Borel wrote: > Hi all, > > I am using tomcat 5.5 and I am trying to implement a filter. > Now, I have setted the xmlValidation to "true". This causing some > strange sax errors: > > - > 2006-03-08 16:47:27,324 [main] ERROR > org.apache.commons.dig