Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Submitting a Form in Acrobat Pro DC - PDF Complete Document to website

New Here ,
Jun 19, 2016 Jun 19, 2016

I have a webpage that currently allows users to browse to a local folder to upload a pdf file.  I want to also allow users to "SUBMIT" directly from the PDF itself.  I have:

  • Created a form in Acrobat DC
  • Created the button to "Submit a Form"
  • Selected the PDF " The complete Document"

What are the expectations tied to the URL?

I just want to submit this complete PDF directly to a webservice.  Can i do this?

Any insight would be helpful.

Thanks!

TOPICS
Acrobat SDK and JavaScript , Windows
451
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jun 19, 2016 Jun 19, 2016

The URL is that of a typical submit target (not a SOAP service etc.). It could be a PHP, ASP, CGI etc. It will receive headers and PDF data; it must parse headers and process the input data by reading it and (presumably) saving it somewhere.  Be aware that if you want the contents of a filled in form this is about the hardest and most awkward way to get that info.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jun 19, 2016 Jun 19, 2016

Thanks!  So that makes sense.  So if my website already has an existing POST, when a user manually browses to a local pdf and uploads the file, am i basically just pointing it to the post event? 

Currently, I already have the parsing working when they manually upload the file, so I'm just trying to run it through a similar process..

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jun 19, 2016 Jun 19, 2016

Oh, and while you mention submitting from Acrobat Pro, be aware that if you want your users to submit from Acrobat READER there are many and complex limitations.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jun 20, 2016 Jun 20, 2016
LATEST

If you have an existing web script designed to handle POST, give it a try for this purpose. It may work. If not, you may need to parse the headers and see what is different.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines