In a class I have a string variable with a value of:
filePath = "file://" + "gvas400/home/sde/pdffiles/817739P1.pdf";
This works great when I run the web app on my local web host server.
However, when I publish to our as400 Web server the following error appears when I try to view the file. I takes out one of the "/" just before the gvas400 server name.
Error Message: No such path or directory. file:/gvas400/home/sde/pdffiles/817739P1.pdf
Can someone help?
filePath = "file://" + "gvas400/home/sde/pdffiles/817739P1.pdf";
This works great when I run the web app on my local web host server.
However, when I publish to our as400 Web server the following error appears when I try to view the file. I takes out one of the "/" just before the gvas400 server name.
Error Message: No such path or directory. file:/gvas400/home/sde/pdffiles/817739P1.pdf
Can someone help?
Comment