Question : run a batch file using system command in cgi

I need to run a batch file with some dos commands in a perl-cgi script. I can able to run it in perl editor(perl IDE) and receive the result of the batch file.But I can't able to see the result of the system command while i fire the script in apache 2.2 http server.
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
run.bat:
========
@echo off
java -jar C:\saxonb8-0\saxon8.jar -o %1 %2 C:\convert.xsl
rem %2
 
convert.cgi:
============
$infile='D:\CONVERT\sample.xml'
$outfile='D:\CONVERT\sample.gml'
my $results=system("D:\\CONVERT\\Run.bat",$outfile,$infile);
Open in New Window Select All

Answer : run a batch file using system command in cgi

Don't use system for output.  Use backticks ``

my $results=`D:\\CONVERT\\Run.bat $outfile $infile`;

$results will contain the output.
Random Solutions  
 
programming4us programming4us