Saving FDF data via ASP to be opened in a different PDF

Ask a Question related to Adobe Acrobat Windows, Design and Development.

  1. #1

    Default Saving FDF data via ASP to be opened in a different PDF

    I'm a graphic designer, not a coder, but I have managed to create a web-based PDF form that submits the FDF to an ASP page that routes it to an email address. My problem now is that the receiving party needs to open the FDF in a different web-based PDF before submiting it to a final destination, and I can't figure out how to do this.

    In other words: We sell widgets, but the retailers who buy our widgets have to go through their central headquarters. Only central headquarters can place the order with us. So I created a PDF that the retailers can access on the web. Their order gets submitted via FDF data to an ASP page that sends the FDF to the central headquarters. Central headquarters will edit the data and then submit it to our processing people. So the submit button and some fields on the PDF version the central headquarters accesses needs to be a little different from the version the retailers access.

    I'm using Acrobat 6 Pro and NT 4 servers. The retailers and central headquarters use Acrobat Reader 5 or 6.

    Thanks for any insight!

    Rob
    Rob_Hecker.@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. saving data from .FSO
      Hi all, I am also looking for similar thing, a simple FSO file reader, something like the SharedObject Reader (SOL) written by Alessandro at...
    2. saving data in XML
      hi, i?m using a model to load a xml file and I?m using a data grid do show this model data. I created a for to insert new rows in the data...
    3. Saving data between sessions
      Is it possible to save session values between pages? I did a little script to let the users login. I use this script to check username and password...
    4. Saving variables or data
      Hi everybody I have a question about saving data via flash. Here is my scenario: I have a swf movie (web site) that contains seminar dates. These...
    5. how can I ensure a PAGE2.php is opened only after viewing PAGE1.php AND is opened in HTTPS?
      I have a web page where certain pages have to be opened in a certain order and should only be available when the user openes them in HTTPS. They...
  3. #2

    Default Re: Saving FDF data via ASP to be opened in a different PDF

    What you need to do is alter the value of the /F key in the FDF. The value of the /F key tells Acrobat what PDF to open and populate with the data in the FDF. If you're using the FDF Toolkit, you'd open the original, use FDFSetFile to specify the URL of the PDF that the central headquarters folks will use, and forward the modified FDF.

    George
    George_Johnson@adobeforums.com Guest

  4. #3

    Default Re: Saving FDF data via ASP to be opened in a different PDF

    I do have the FDF toolkit (I hhave an Adobe partner membership) but I balk at asking our IT dept. to install the components on the server so my ASP code can access the library. I was (still am!) hoping that I can change /F via my submitForm routine (without installing the toolkit). I tried setting cpath and I tried the method below. Didn't work. Any thoughts?

    this.submitForm({
    cURL: "http://65.173.248.163/app_nba/router1.asp#FDF",
    'tried like this-
    'cPath: "http://65.173.248.163/app_nba/app_rep.pdf"
    then like this-
    FDFSetFile: "http://65.173.248.163/app_nba/app_rep.pdf"
    });
    Rob_Hecker.@adobeforums.com Guest

  5. #4

    Default Re: Saving FDF data via ASP to be opened in a different PDF

    There's nothing you can do with the submitForm method that will cause the /F key to be replaced. You have to modify the FDF on the server after you've received it.

    George
    George_Johnson@adobeforums.com Guest

  6. #5

    Default Re: Saving FDF data via ASP to be opened in a different PDF

    George,

    Thanks for letting me know. I'll stop trying to find a way to do it that way.

    Rob
    Rob_Hecker.@adobeforums.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139