Displaying 1 result from an estimated 1 matches for "selected_host".
Did you mean:
select_host
2007 Sep 12
0
: Error on tomcat...
...0.14 on Solaris 10 i86. I wrote a perl script which is
running a cgi on tomcat, from there i am taking input value's and using the
following way to create a graph using R and accessing that graph to attach
it on webpage:
....
....
my $to_run = "/usr/local/bin/R --vanilla --slave --args $selected_host
$graph_start $graph_end < ..\/..\/..\/page\/R\/" . $graph_name . ".r ";
system("$to_run");
....
....
My R file looks like this...
.....
.....
files <- "/u/Docs/tomcat/webapps/page/Web/img/tmp.png"
bitmap(file = files, type = "png256",...