I have created a pdf form using acrobat with below script.
Below the script:
function importXFDF() {
var url = "https://<Server>/first-form_data.xfdf";
this.importAnXFDF(url);
}
importXFDF();
If any users download and open the form i am trying to Prefill the form values from XFDF file using importAnXFDF() function. XFDF file is dynamically created by php script.
The issue is: if i pass any local xfdf file then the values are populated. But it fails if it is server file. Is it possible to import data to pdf form from server?