cancel
Showing results for 
Search instead for 
Did you mean: 

Offline Interactive Form Using Download - how to store a file on the WAS?

a_heut
Participant
0 Kudos

Hi all,

We are using tutorial Offline Interactive PDF Form Using Download (30) as a test application to see if we get the basic Adobe functionality to work. However, in the tutorial they tell you to create a project. We have decided to create a DC (development component) instead. Now we are stuck at the following piece of Java code: String fileName = "temp
webdynpro\.......
TravelRequest.pdf";

We would like to store the source file on the Web Application Server, not on a local drive. Does somebody know what to fill in for String fileName?

Thanks in advance for your help!

kind regards,

Angelique Heutinck

angelique.heutinck@iff.com

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

You can place the file where ever you want on the Web Application Server and just give the path to the file and the file name. For example if you place the file under "/usr/samples/AdobeDemoFolder/

String fileName = "/usr/samples/AdobeDemoFolder/TankInspection.pdf"

for Unix

for windows it will be

String fileName = "c:/usr/samples/AdobeDemoFolder/TankInspection.pdf"

Answers (0)