Joined: June 23rd, 2005, 11:57 am Posts: 3
|
Hello All
I’m try to call a Perl script from my CD to return a variable, I cant seem to get the value of variable. If I post it on a web server it works, Here is what the Perl script looks like.
print "Content-type: text/html\n\n";
print "&Data=Hello World.";
exit;
I have also tried:
print "Content-type: text/javascript\n\n";
$Data = "Hello World";
print "var Data = $Data \n\n";
exit;
I'm using the "post web data action" with the destination variable of "Data" set.
|
|