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

2006-10-23 Thread Gunnar.Bostrom
gt; Från: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > Skickat: den 19 oktober 2006 15:08 > Till: users@tomcat.apache.org > Kopia: [EMAIL PROTECTED]; Bengtsson Henrik > Ämne: RE: Problem with filter and calling Perl-script with > Tomcat 5.5.20 > > Hi Mark, > > You

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

2006-10-19 Thread Gunnar.Bostrom
nough. Any one out there who knows how to do this? Regards Gunnar > -Ursprungligt meddelande- > Från: Mark Thomas [mailto:[EMAIL PROTECTED] > Skickat: den 19 oktober 2006 13:24 > Till: Tomcat Users List > Ämne: Re: SV: Problem with filter and calling Perl-script

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

2006-10-19 Thread Mark Thomas
[EMAIL PROTECTED] wrote: > Hi, > > That is odd because I have the following problems: > > 1) When I post an ordinary form, not a multipart, no parameters will be sent > to the Perl script. And light dawns. Sorry - should have spotted this sooner. You call getParameterMap() in your filter which

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

2006-10-19 Thread Gunnar.Bostrom
t > Ämne: Re: Problem with filter and calling Perl-script with > Tomcat 5.5.20 > > [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 p

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
igt meddelande- > Från: Mark Thomas [mailto:[EMAIL PROTECTED] > Skickat: den 18 oktober 2006 02:42 > Till: Tomcat Users List > Ämne: Re: SV: SV: SV: SV: Problem with filter and calling > Perl-script with Tomcat 5.5.20 > > [EMAIL PROTECTED] wrote: > > Hi, > &

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

2006-10-17 Thread Mark Thomas
[EMAIL PROTECTED] wrote: > Hi, > > I can reach the request object and add a parameter, the problem is that the > CgiServlet in Tomcat has been changed so my code doesn't work anymore. > > Regards > Gunnar You are correct. The fix for bug 37285 is the root of your problems. You have a couple of

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

2006-10-17 Thread Gunnar.Bostrom
ber 2006 12:26 > Till: Tomcat Users List > Ämne: Re: SV: SV: SV: Problem with filter and calling > Perl-script with Tomcat 5.5.20 > > Not sure to understand, u mean that u can't reach the request > object in your filter since u are using Tomcat 5.5.20 ? > > [EMAIL PROT

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

2006-10-17 Thread Michael Courcy
Not sure to understand, u mean that u can't reach the request object in your filter since u are using Tomcat 5.5.20 ? [EMAIL PROTECTED] a écrit : Hi, My code is in a filter that executes before the CGIServlet in Tomcat kicks in. It worked with Tomcat 5.5.17 but NOT with Tomcat 5.5.20 and I wo

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

2006-10-17 Thread Gunnar.Bostrom
TECTED] > Skickat: den 17 oktober 2006 12:07 > Till: Tomcat Users List > Ämne: Re: SV: SV: Problem with filter and calling Perl-script > with Tomcat 5.5.20 > > Ok that should not be that hard to POST with java, your > filter is acting like a client. > > have a look th

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

2006-10-17 Thread Michael Courcy
Perl script and one additionally parameter. Regards Gunnar -Ursprungligt meddelande- Från: Michael Courcy [mailto:[EMAIL PROTECTED] Skickat: den 17 oktober 2006 11:05 Till: Tomcat Users List Ämne: Re: SV: Problem with filter and calling Perl-script with Tomcat 5.5.20 Can&#x

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

2006-10-17 Thread Gunnar.Bostrom
ill: Tomcat Users List > Ämne: Re: SV: Problem with filter and calling Perl-script > with Tomcat 5.5.20 > > Can't u use > > request.sendRedirect("myperlscript.cgi?aparam="+request.getPar > ameter("blah")); > > Mic > > [EMAIL PROTECTED] a

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

2006-10-17 Thread Michael Courcy
e additional parameter to my Perl script. Regards Gunnar -Ursprungligt meddelande- Från: Martin Gainty [mailto:[EMAIL PROTECTED] Skickat: den 16 oktober 2006 18:06 Till: Tomcat Users List Ämne: Re: Problem with filter and calling Perl-script with Tomcat

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

2006-10-16 Thread Gunnar.Bostrom
TECTED] > Skickat: den 16 oktober 2006 18:06 > Till: Tomcat Users List > Ämne: Re: Problem with filter and calling Perl-script with > Tomcat 5.5.20 > > Gunnar- > > String AStringWhichHoldsPostedOrQSValue; > if(HttpServletRequest.getMethod() == "POST") { //Pos

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

2006-10-16 Thread Martin Gainty
e intended recipient, you are hereby notified that you have received this communication in error and that any review, disclosure, dissemination, distribution or copying of it or its contents - Original Message - From: <[EMAIL PROTECTED]> To: Sent: Monday, October 16, 2006 11:09

Problem with filter and calling Perl-script with Tomcat 5.5.20

2006-10-16 Thread Gunnar.Bostrom
Hi, I've a problem with the new 5.5.20 Tomcat version. I think this has to do with this bug fix http://issues.apache.org/bugzilla/show_bug.cgi?id=37285. The problem is that I have a filter that adds a parameter before the CGI-filter calling out to a Perl-script. This code worked with Tomcat 5.5.

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

Problem with filter

2006-03-09 Thread Franck Borel
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.digester.Digester - Parse Error at line