Hi,
I m trying to call a CGI file which is located in the iw-home folder. JS file in Teamsite is pushing parameter's correctly.
Js Script:
param.valueArti=New_Date;
//alert(param.valueArti); - to check the param value being sent
param.valueArti1=filePath;
param.valueArti2=filePath_log;
IWDatacapture.callServer("http://"+server+"/iw-bin/fileinformation.cgi",param)
CGI file :
#!/apps/iw-home/iw-perl/bin/iwperl -w
use CGI;
use XML:

OM;
my $in = new CGI;
my $fpath=$in->param('valueArti');
But, when I try to print the $fpath value to a output file, it does not show any update. How can I solve this ?
Thanks.
P.S. Folder properties are correct, no issues with it.