Posted 23 February 2021, 9:04 am EST
Hi,
Attached zip file contains VS2019 project (.net core 3.1). Program is console application – run with arguments as below.
-? – prints “help”
-a RG –ret STDPDF – creates report and exports it to PDF document (“STDXLS” exports to Excel spreadsheet, “STDTXT” to text file, “STDTIFF” - to TIFF file)
Example commands:
NCARSimpleTest.exe -?
NCARSimpleTest.exe -a RG -ret STDPDF
dotnet NCARSimpleTest.dll -?
dotnet NCARSimpleTest.dll -a RG -ret STDPDF
Folders InputFiles and OutputFiles have to be at the same directory/folder as executable/dll file (they contain data and layout files and place where exported files are stored). Application is created as .net core 3.1 console application. It works correctly on Windows environment.
On Linux environment it… does not work. Export to pdf and xls files throws exception. Export to txt file works but does not produce file (probably file access permissions or similar) – at least does not crash. Export to TIFF - stream is empty.
Can you please advise what is wrong with the code that it works on Windows and DOES NOT work on Linux?
Thank you.NCARSimpleTest.zip