I run my workflows on computer xyz. On this machine I have several data files that I would like to read in and use that data in the workflow. These files are modified fairly regularly.
I run the following code and get the following error:
var myFileReader = new FileReader("c:\\path\file.csv"); myFileReader.open(); testrecord = myFileReader.readAll(); //testrecord is a String variable myFileReader.close();
Permission denied on file '/var/lib/vco/app-server/bin/c:\path\file.csv' , read not allowed
This shows that orchestrator is trying to read the file from the VCO Appliance vs. my local machine.
Is it possible to have VCO read a file on my local box xyz? Having this file uploaded to the VCO appliance on every modification may be a bridge too far.
Thank you very much for any help.