Questions about submitting PDF form to server

I need to add a submit button to an existing PDF form that will submit it to a PHP script on the server. I can find information on submitting as FDF, but what does the "submit as HTML" option do? What and how does it submit to the server? I added a button (also a minor problem, the button text doesn't show) to the document with Acrobat 9 Pro, choosing the "Submit as HTML" option, but when I submit  it to a PHP script on the server that should echo or printr submitted $_POST data, I get an error message "An error occurred in the submit process. Cannot process content of type text/html."
Apparently submitting as FDF is not an option, because the server does not have the FDF toolkit. What I need to be able to do is submit the PDF form with the information entered into it to the server, and redisplay it with the form inputs in place and with an added image. What would be the easiest way to do this? If I can get the form onto the server in HTML format, it would be easy to to add the image and redisplay it, or possible there is some way I could redisplay it in PDF format after adding an image to it? Any advice? Some tutorial on the other PDF form submit actions?

Could someone at least point me to some information that provides all the details of how a PDF form is submitted to the server and discusses the options for the action? This information must surely exist somewhere, but after two days of searching I cannot find it.
I am experienced with PHP (I used FPDF for one project) so a specific "how to" that is PHP oriented would be nice.

Similar Messages

  • Submitted PDF form data are empty

    I created a simple PDF form using Acrobat X Pro that containing one textbox ("txtName") and one button ("btnSubmit"). The button's action is set to "Submit a form" and the URL is set to an asp.net generic handler ("PdfFormHandler.ashx").
    When I open the PDF in browser and fill in the textbox and click on submit button, the form submitted. But on the server side, "txtName" is always empty. There are no errors but just missing the submitted data. the server side code is:
    public class PdfFormHandler : IHttpHandler
        public void ProcessRequest(HttpContext context)
            if (context.Request.RequestType == "POST")
                var name = context.Request.Form["txtName"];
                context.Response.ContentType = "text/plain";
                context.Response.Write("Hello " + name);
        public bool IsReusable
            get
                return false;
    I should see "Hello " and then a name. But since it's not able to retrieve "txtName", it only prints "Hello".
    i found what the problem is and i posted the answer here. http://stackoverflow.com/questions/10885969/adobe-pdf-form-submitted-but-request-form-coll ection-is-empty

    You could try first flattenening the fields. This converts the field appearances to regular page contents. You can do this with JavaScript, PDF Optimizer, or a Preflight fixup.

  • Questions about Adobe Interactive Forms

    Hi everybody,
    I have some questions about Adobe Interactive Forms with CRM 2007.
    I can create AIFs with the Template Designer via the WebUI. These templates appear e.g. for the account in the selection PopUp "Create from template". But these templates are not interactive at all, just the BP-information is displayed.
    Is the template-function only a static way to create a static PDF from the BP-information? Or is there a way to have the BP-information loaded to the PDF but still interactive input to communicate via a webservice?
    Thanks a lot for answers.
    Regards,
    Ben.

    My really modify is :
    CLASS: CL_CRM_WFD_ASSIGNMENT_FOLLOWUP
    METHOD: GET_ATTACHMENT
    ORIGINAL CODE:
    cl_crm_oi_ads=>call_ads(
            EXPORTING
              iv_xml_string      = lv_ws_data
              iv_xdp_string      = lv_template_data
              iv_returntype      = lv_doc_type      "cl_crm_oi_ads=>gc_doc_type_pdf
            IMPORTING
              ev_result_document = lv_pdf_xstring
    NEW CODE
    cl_crm_oi_ads=>call_ads(
            EXPORTING
              iv_xml_string      = lv_ws_data
              iv_xdp_string      = lv_template_data
    *{   INSERT         CRDK900138                                        1
    * Modify for correct Interactive Form
              iv_fillable        = 'X'
    *}   INSERT
              iv_returntype      = lv_doc_type      "cl_crm_oi_ads=>gc_doc_type_pdf
            IMPORTING
              ev_result_document = lv_pdf_xstring

  • Acrobat XI standard (Windows) - can't save PDF Form in server

    We created a PDF Form (Acrobat 11 standard) and located in company server. After fill up, it will be close & saved by script. It is working for some persons, but few person face the problem when they save PDF form in server "The file may be read only or another user may have it open. Please save the document with a different name or in a different folder.". It is sure that others not opened PDF form parallely.
    Please guide how to solve this issues.

    The message is telling the user either another program has the file open or another user is using the form.
    Other programs that may trigger the file lock or form in use are Windows Explorer in the Preview mode, anti-virus software, or backup software. It is even possible that the server has lost track of the lock on the file.

  • Best web browser for submitting PDF forms

    Is there a preferred web browser for submitting PDF forms, or can recipients submit the form via any of the common browers like Explorer, Firefox, Chrome, etc.?

    We support all of the major browsers: Internet Explorer, Firefox and Chrome.
    Thanks
    Roman

  • Submitted PDF form is not delivering to my Domain email account

    Submitted PDF form is not delivering to my Domain email account

    What exactly is not working ? As you have mentioned form submission notification is received in your email account so form process is working I believe but you want the notifications to go to another email account I think.
    Have you added the email address in "Email to" field in form options ? If yes and then also you are not receiving the form , then please provide me the site url and post a screenshot or form with option box open.
    Thanks,
    Sanjit

  • Hello question about certified pdf

    Hello,
    I have a question about certified pdf.
    My client wants to have a certified pdf , when  I make a high resolution PDF in CMYK is this oke for print media?
    Or do I need to do somthing els??
    Ton

    As Dov says, it's very likely that what they actually mean is a PDF/X file - some flavors of which you can make from InDesign using the Export > PDF (Print) dialog presets, and some you can make using Acrobat Pro.
    However it's very important to find out exactly what they want:
    There a couple of versions of PDF/X (the older PDF/X-1a is very widely supported but can only cope with CMYK - the newer PDF/X-4 is more flexible and handles things like spot colors, but is often not printable on older hardware).
    When exporting to CMYK you have to choose a color profile - and that will depend on the printer's hardware and proofing systems. You may have to choose exactly the right one, or they may be able to convert back from any profile - until you find out you're working in the dark.
    Of course you also need to know the printer's rules about bleed, TAC, etc.

  • Using PHP to process submitted PDF Form and Upload FDF to Server

    Hi All,
    I have a PDF form online (created in Acrobat 9.0 Pro, NOT LiveCycle Designer!) that, once a user has filled it out and clicks the submit button, I want two things to happen:
    1) I want the data from the form to be submitted to a custom PHP script, which I can do several different things with (store the data in a MySQL database, for example).
    2) I would also like to upload/store/save (not sure of the proper vernacular) the filled out form (FDF file) to the web server.
    Now what I need from you lovely people, either directly, or point me to where I can find the following:
    1) How/What options do I choose for the Submit button in Acrobat 9.0 Pro when I create the PDF?
    2) What/Where can I find a PHP code snippet to get the data from fields in the submitted form?
    3) I know you can set up an Acrobat form to e-mail a copy of the FDF file to a specified e-mail address. Instead of emailing that FDF file, I want to store it directly to a folder on my web server. However, just setting the URL in the submit button to a folder on my web server doesn't seem to do the trick. So, I guess what I need is to somehow reference the FDF file with my custom PHP script... something like $_POST["fdffile"] ???? Please if anyone knows how to do this, please let me know! Because, if I can reference the FDF file, I can then use PHP's built in FTP functions to upload it to a specific folder on my web server.
    Thanks for any input!!!

    HI All,
    can someone please quide me how I can make this code to work for me?
    Where and what folder I have to put this PHP script?
    What my http will be?( I will use localhost)
    What the name of my PDF file(create by LiveCycle Designer)
    What the name of the file I will receive and where(folder) will be send it via the server?
    I see these name below in the PHP script but I can not make out what....
    configuration.php
    administrator/xml
    administrator/pdf
    THANK you

  • Email or store submitted PDF form using PHP

    I'm using LiveCycle Designer 8.0. I've searched a lot but haven't seen any answers or solutions to submitting the filled out pdf form online and the pdf sending to an email without it having to use an email client on the users computer.
    I'd prefer to use php and either save to the server or directly send the pdf as an attachment using the php mail() function. Any language would be fine, I'm just experienced with php.
    If anyone would have a solution to this, I am fully capable of editing scripting to send the correct fields for my particular form. I've just not been able to find a way to store and attach in pdf format. Since the LiveCycle has the built-in function to open your default mail client, attach the pdf, and then send - isn't there some way that function could be edited to use the servers php mail feature instead?
    Any help would be greatly appreciated. The reason this has become so important is that the new systems at some doctor's offices are requiring pdf's sent in advance that save in a program that allows the use of digital pen signing (like when you sign for a fedex package) of the documents once the patient arrives. And unfortunately, still many of the patients are not going to be avid pc users and will not have an email client program like outlook set up.
    Thanks much,
    Heather

    Thank you for your answer. I completely understand how to do all the things you mention, have been able to do them - where I can't seem to understand is posting to the web server. Maybe it's just simple and I'm overthinking it. When I set a url to post to, I've been trying to use a php script, but can't get the call right to save or grab the pdf.
    Could you help me with that part? Are you meaning it that way - to post it to a script or am I over-doing it and there's a simpler way?
    I appreciate your help very much.
    Heather

  • Problems Submitting PDF Forms via Adobe Reader XI?

    Hi,
    I have used Acrobat Pro (Versions 9/X and XI) to successfully create fillable PDF forms. I distributed the forms to a server via Acrobat, then set up a hyperlink to the form's location for my users. The users were able to fill the form and submit it.  I was able to manage the submitted form data via Adobe Tracker.  Recently, many of my users have been updated to Acrobat Reader XI.  Now, some of these same users (who have successfully submitted these forms in the past - before the latest upgrade) can no longer submit the form data!  If a user fills the form and clicks submit, it appears to that user that the form was successfully submitted, but no data appears in Adobe Tracker, even after refreshing... What would cause this??
    Thank you!

    What is your operating system?  What is your Reader XI version?  What exactly means "cannot"?

  • Submitting PDF Form to SharePoint 2010 Library

    I've inherited a simple PDF form created with LiveCycle ES2. We'd like to be able to let users Submit the result of the form in a PDF format, to a SharePoint 2010 Library using a Submit button. I've added a button and configured the Control Type to Submit. I've added a SharePoint library to the Submit to URL: field and changed to Submit to PDF. Now when I click the button, it opens the SharePoint library but nothing is there. I'm sure there's more I need to do to get this working. Do I need to install the server-side stuff for LiveCycle on the SharePoint server?

    This is not striclty my area of expertise so I don't want to give you a bum steer - at best my response is vague but it may give you a few clues of where to start looking. I'm not too sure how you might have confgured this but your PDF form needs somewhere to send the data and then receive and store it - that's not a SharePoint list or document library (I seem to recall reading somewhere that you can do clever stuff with PDF and SharePoint but I don't think it works out of the box like you're describing here - that info basically alluded to using PDF and SharePoint together [like marketing statements] but didn't go into the hows). I suspect that submitting a PDF form may result in an XML data stream but don't quote me on that either. Alternatively if Acrobat is going to collate results then I think the form being submitted may need to end up in the same locaiton as the "master" PDF form but again I'm guessing a bit here too. For all intents the "master" pdf form may need to reside in SharePoint (and as a result it is addressable on a URL or as a file via WebDAV) in which case it will (or ought to) function like any other PDF form where you can collate results to a spreadsheet. If thats all it can do then using SharePoint seems moot. I think Google is your friend here :-)

  • Submitting PDF form data

    In the following discussion from last year: http://forums.adobe.com/thread/988633?tstart=0
    it's stated that the only type of submit form action that's supported is where the entire PDF is sent via email. This isn't really a submit though, it's just initiating an email and attaching the form. What I would like is to be able to set up a form to submit to a web server, either the entire PDF or just the form data. This is in fact allowed for PDF forms (Acroforms) that have been distributed through the FormsCentral service (which was added after that discussion linked to above), and when using the various desktop versions of course. The button action for a FormsCentral PDF form uses the submitForm JavaScript method and submits the form data as "HTML", but when I try to do the same thing with a form I create, it simply doesn't work. So either there's some proprietary magic that's enabled for use only with FormsCentral distributed forms, or everything I've tried is somehow wrong. Can anyone from the Reader development team or anyone else provide some clues?
    I noticed that when I replaced the URL in the submitForm statement in a FormsCentral-enabled PDF form, the form still submitted to FormsCentral, probably due to the metadata that's also set when a PDF is distributed via FormsCentral, so there is some sort of magic going on...
    Thanks!

    If the ability to submit is limited to FormsCentral-enabled forms, it would be interesting to know why such a restriction is in place. Reader for Win/Mac has been able to submit form data (as "HTML", FDF and later XFDF and PDF) since forms were first introduced with version 3. What is the justification for this restriction on iOS?

  • Trouble submitting PDF form with Web Mail

    Hello,
    I have a fillable PDF form that I'm trying to submit. When I submit the form through an email client (Outlook, Mail, etc.) it works perfectly. When I try to submit using the Webmail option, I get this message: "An unknown error has occurred while uploading the attachment. If you are not sure how to proceed further, you can save your form and return it manually using your Internet mail service."
    I've checked the file thoroughly and everything looks correct. I'm perplexed as to why it submits just fine through an email client, but won't submit via Webmail. I've tried on a Mac and a PC and I've tried using a Yahoo account and a Gmail account with the same results. Any ideas?
    Thanks!
    Kate

    I'm using Acrobat XI Pro. I don't have Reader installed on my laptop. The form is for a client who sends it out to patients to fill out, so I need it work with both mail clients and web mail. Is there a way to do that? I don't think changing that preference in my Acrobat will solve the problem, as that will just effect my Acrobat. Is there a setting I can apply to the actual document? Thank you for your response!

  • Problem submitting PDF form in WorkSpace

    Hi, my server is ES2.5 Turnkey install (Express mode) on Windows.
    Client is IE-8 with latest Reader.
    My form is a PDF form created in the WorkBench,
    it has 2 pages, with some Digital Signature fields,
    I have also added the "Process Fields" group onto page 2 of the form.
    The form is to be routed in the standard WorkSpace.
    At the Initiator step (Start Point), I use the Action Profile to do the Pre-fill of the form.
    I have checked the Reader Extended box.
    I use a Document variable as the Output from the StartPoint, the doc variable references my .PDF form template.
    Everything works fine at the Initiator step, the form fields are all properly Pre-filled.
    The problem is:
    after I click the Complete button, it goes to the next participant of the workflow process,
    when that person opens up the form in the WorkSpace, it's all blank, none of the data at the Initiator step show up.
    This User task uses the same Document variable as the Input (specified at the Presentation & Data tab).
    What do I need to do to pass the form data along with the form to the next person in the Process?
    What have I done wrong?  what should I check?
    thanks.

    I sort of narrowed down the problem a little bit.
    I created a smaller PDF form, it has Digital Signature field as well as the Process Fields group, plus some Text fields.  When I used it in the SAME process (changed the Document variable to point to this new small form of course) everything worked!  No data loss.  Everything on the form including the Signature got passed to the next person in the workflow just fine.
    So I think my Process design is fine, the problem appears to be in the original 2-page PDF form.
    But I can't figure out what thing on the form could have caused the data loss!
    There's no error message anywhere, nothing in the JBoss server log either.
    Has anybody seen similar problem like this?
    thanks.

  • Questions about my PDF portfolio.

    I have only a few questions about a CD portfolio I am designing with Acrobat Professional (8.0)
    There were a few things i couldn't figure out on my own.
    I have about 15-20 pieces to show on CD, but there is no web design involved, so I couldn't use my own web site layout to just throw onto CD, out of that convenience.
    1) How do you make sure the PDF will always opens at the size you want?
    For example, whenever I set the document at actual size (100% view) I close and open the document, and it reopens at a random size, such as 317 percent.
    WTH?
    2) Where can I find examples of design portfolios that were designed in Acrobat? Everyone's portfolio is online these days, which is not my style.
    3) Is it possible to make a 'thumbnail view' on the first PDF page (like you would see in a gallery on a website) that links from that page to any one of the 15-20 pieces?
    Any advice is much appreciated.

    Fender77 wrote:
    1. i think you will have to shutt it off within settings, if the javagame won't let you turn it off temporary. Don't you find keytones annoying?
    Guess thats what ill do
    I also found another stuipd thing in some Java games the phone still has the tilt sensor active in games and software.
    Some games end up with graphic glitches forcing you to restart them, some display a message saying its unsupported and some support it partially (The number keys for navigation stay like they are in portrait which is of course messed up (The phone seems to change the navigation keys internally though so that does work)

Maybe you are looking for

  • Personal File Sharing & Network in the Sidebar

    I have had the same symptoms as other posts; but the real answer was not given, YET. If you use the Network icon in the Sidebar, and you move between networks, Where or How do you Refresh the Finder? Rebooting or Shutdown is not the answer. Windows N

  • Unable to check certificate validity online. check...

    please help me on this... m not able to load anything my phone is n73-1 Personal details removed by a moderator. We kindly ask you not to share your personal contact details publicly on this forum.

  • Table row change color on hover

    Hi, I don't know if it's possible to change table row color on mouse hover, I've been looking at skin-selectors (http://www.oracle.com/technology/products/jdev/htdocs/partners/addins/exchange/jsf/doc/skin-selectors.html#Global%20Selectors) and I have

  • Cookies

    i want to know how to use cookies in my jsp coding - as in mailing concept. pls explain me with a coding thank you

  • I am not getting my news , sports etc notifications and my settings are all turned on?

    I Have all my notifications turned on and still not getting news, sports, Facebook , etc notifications to pop up