>
> When I Execute one file (title.epl, and there is "die" in it) and
> after (or before) that try to catch output of another (output of
> some.epl, into $res), I receive error messages from title.epl (!) in
> $res variable.
>

Aah I see...

Embperl accumulates all error during one request. To not receive the error,
just reset Embperl error flag like

[-
$r = shift ; # embperl request object
-]
<H1>[- Execute('title.epl'); # should die there -]</H1>
 [-
$r -> Error (0) ; # reset error flag
 Execute({
 inputfile=>"some.epl",
 output=>\$res,
 });

 print OUT $res;
 -]

Hope this helps

Gerald

P.S. This only work with Embperl 1.x

---------------------------------------------------------------------------
Gerald Richter            ecos electronic communication services gmbh
IT-Securitylosungen * Webapplikationen mit Apache/Perl/mod_perl/Embperl

Post:       Tulpenstrasse 5          D-55276 Dienheim b. Mainz
E-Mail:     [EMAIL PROTECTED]          Voice:   +49 6133 939-122
WWW:        http://www.ecos.de/      Fax:     +49 6133 939-333
---------------------------------------------------------------------------
ECOS BB-5000 Firewall- und IT-Security Appliance: www.bb-5000.info
---------------------------------------------------------------------------


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to