Acroread 8.1.2 unable to process PDF 1.6 documents generated by Adobe LiveCycle Forms 7.0

Our workflow uses LiveCycle Forms to generate PDF 1.6 documents with embedded JavaScript and XML. These PDFs work fine with Adobe Reader 8.1.2 on Windows; they display correctly, the interactive fields work as expected and the documents can be printed properly.
However, acroread 8.1.2 on Solaris is not able to process the same documents correctly. When we run acroread headlessly as follows:
cat xxx.pdf | acroread -toPostScript -level2 > xxx.ps
the resulting PostScript file displays a message saying "To view the full contents of this document, you need a later version of the PDF viewer. You can upgrate to the latest version of Adobe Reader from www.adobe.com/products/acrobat/readstep2.html"
I have confirmed that we are using the latest version of acroread for Solaris.
Does anyone have any insight into why this message is being generated by acroread 8.1.2?
edit: acroread is able to process other PDFs as above without problem. It only has problems with PDFs generated by LiveCycle Forms which include embedded JavaScript and XML.

Neha,
Thanks for the response.
We are running acroread headlessly since it is on a remote server that we access via telnet. Without an XServer session, I can't tell whether acroread is able to read and display the PDF files normally. However, we can view the PDFs with Adobe Reader 8.1.2 on Windows and the acroread -toPostScript command-line that we are using does work properly with other PDFs.
I will email you a copy of a problematic PDF shortly.
Regards,
Steven Dickson

Similar Messages

  • Sharepoint 2013 : Server was unable to process request. --- Site is not configured for Claims Forms Authentication.

    In our java web application trying  establish the connection for sharePoint 2013
    using  Windows claims authentication (NTLM ), I am getting error message "Server was unable to process request. ---> Site is not configured for Claims Forms Authentication". But In the Sharepoint 2013 our Site is is configured for Windows
    claims only.
    In the Sharepoint 2013 server in the IIS manager settings for authentication it is  enabled for both Windows claims and Forms authentication,
    but if I disable Forms authentication that I will be able to connect it through my application but with the direct access i.e., by running the URL in the browser I am not able to connect getting error message "sorry this site has not been shared with
    you" in the browser  Kindly help me on this.

    Hi,
    This issue is always caused that you had missed FBA configuration in web config of your web application.
    You can configure the FBA authentication then check whether it works.
    http://technet.microsoft.com/en-us/library/ee806890(v=office.15).aspx
    http://chrisbarba.com/2013/07/16/sharepoint-2013-forms-based-authentication-fba/
    more reference:
    http://stackoverflow.com/questions/5686378/sharepoint-2010-claim-base-authentication-error
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/2d82dcd4-0e57-4de5-81bc-60ffc3cb9a9f/sharepoint-2010-claim-authentication-and-authenticationasmx?forum=sharepointgeneralprevious
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Why dont i ever see downloaded pdfs in the "documents section" in adobe reader on my ipad?

    Why dont i ever see downloaded pdfs in the "documents section" in adobe reader on my ipad? They only stay in the Acrobat.com section and when I try to move them the "documents" partion is not listed as an option. Only the folders i have within acrobat.com are listed

    The pdfs have been uploaded to Acrobat .com (from my computer) I open the Adobe reader on my ipad and see them in the acrobat partition of the reader. I tap on them and they open.  To test whether they were truly downloaded ,I turn off wifi and they still open. I consider this "downloaded" BUT... they stay in the acrobat.com partition of the reader. Nothing ever goes or lives in the "Documents" partition..nor can I move anything there.....Why not? What is the"documents" partition there for if nothing lives or can be moved there?

  • Unable to open pdf created with Acrobat Pro using Adobe Reader X

    Files created with some Adobe Professional applications such as Acrobat Pro ensure the file is small by excluding font information from the file.  Simple pdf creation applications embed the font in the file, which makes for transportability between apps but does make the files big.
    The problem i have experienced is that Adobe Reader X is one of the simple app varieties, so is unable to open, print, or read files created using Adobe Acrobat Pro..
    i'd welcome any help in (a) finding a free app that opens these 'pro pdf' files, OR (b) an option setting in Acrobat Pro which includes the font information in the file - or both!

    There are so many things wrong, around a tiny grain of truth, it really isn't worth examining. Not at this stage if you are more interested in getting things working.  It may be worth asking you though, since Reader doesn't even launch for you, how you came to focus on font embedding being the cause.
    Ok, Reader doesn't launch. Suppose you start Reader FIRST. Then use File > Open on your PDF.

  • Read/write xml data from/to adobe livecycle forms (pdf)

    Hello,
    I need some help reading xml data from pdfs created by Adobe LiveCycle and also writing xml data back to the form.
    The forms have been created using PROD LC 8.2 and in the future they will be created using PROD LC 9.5.
    I am using Visual Basic .NET to access the data programatically.
    Can anyone help me with some hints? A library, SDK? Any information would be very helpful.
    I am quite new with this Electronic Forms issue and I do not even know where to start.
    Thank you,
    Ionel

    Hi lonel,
    Do you want an online solution?
    I mean, it follows this workflow:
    1. The user will open the PDF by clicking a link, and a server-side program will generate the PDF and prepopulate it with data from some data sources, and render the PDF to the client (Browser),
    2. The user will fill the PDF.
    3. The user will click a Submit button and save the PDF and Data on the server.
    4. If the user wants to edit the Submitted Form, he will click a link to open the save PDF and possibly prepopulate some fields with data from other data sources, and complete the cycle of filling and saved the PDF and Data on the server.
    5. While the user is filling the PDF (inside a Browser), there might be a need to perform some lookup on the server, and update the form parts accordingly as a result of the lookup process.
    For 1-4 above, I have developed a complete base library using ASP.NET which helps you to perform the above.
    You can goto my Google Workspace and you will find a bunch of documents, sample PDFs, collections and VB Classes. To best view them, login using some Google Account.
    For point 4 above, one way to perform this effect, is to regenerate the required XML Data (which has the saved data before and the new lookup data), remerge the entire XML result with and empty PDF Form, and render the XFA (PDF Form) back to the client. But, if the PDF has one or more signatures, it will not work. So, in this case, you can update the Form Fields of a Saved PDF Form with new Data from the server, but the net effect is that you will have to loose all the signatures that were added on the PDF before.
    For 5 (above) there are 3 methods:
    1. Using a Web Service as a Data Connection. This is very easy if you have a traditional Web Service. I have used this method several times and will use it again if the need be. But, there is a problem. If the result of the Web Service is an Array of some Data, and you want to remerge the XFA to get the required effect after executing the web service ... and ... if there are some Drop-Down-List (DDL) fields, the bindings of the DDL Items of those fields will be lost. But, you can rebuild them (on enter event of the DDL Field)  if you have saved them in the embedded XML Data.
    2. You can update few (not many) fields while the PDF is opened (under the Browser via IFRAME) by passing the new field values using the URL Query String method. I have not done this, but I like this method, and I think it is cool. You need to write a server side code to ensure the the new filed values are passed back to the client using the correct URL with the Query String, and you need to write some javascript code inside the PDF to parse the URL and get the new field values and update them accordingly. See this as an example:
    http://www.halnesbitt.com/pages/pdfqs.php
    3. This method is very advanced and uses message communication ques between the Browser and the PDF (which is opened inside IFRAME element) using HostContainer object. This method will enable 2-way communication between the Browser and the PDF on the client side using javascript. I'd love to use this method one day. See example here:
    http://www.windjack.com/WindJack/Browser2PDF/brwsr2acroJS.htm
    I hope this will be of help to you.
    Tarek.

  • How to automate filling of a multiple lines pdf document created by Adobe LiveCycle

    Hello to all.
    I have a pdf document which was created by Adobe LiveCycle Designer 11.0. This document inittialy contains a single line but we can add as much lines as we need.
    I have to fill this document lines with information from MS Excel 2007 worksheets (more than 3000 lines/Week). I have tried a lot of techniques and tools but was never able to automate the process.
    Can someone please let me know if there is a way to automatically copy the data from Excel to the pdf document?
    Thanks in advance for any kind help.
    Octavio

    Hi Andersson,
    The request command is a form server command? Where do i type the Request.Form("page.form.field"). I dont really understand your statement on "Use request on the receiving page to get data" Could you help me by explaining more?
    Thank a lot for your advice
    Warmest Regards
    Delvin Khong

  • Unable to open pdf files using Internet Explorer and Adobe 9.1

    We are unable to open any/all pdf files in Internet Explorer 6 or 7 using Adobe Reader 9.1 on Windows XP SP2.
    The error message is that IE has a problem and sorry for the inconvenience.
    Clicking "OK" closes IE.
    We did not have any issue with Adobe Reader 8.1.
    What we did to date:
    1. Uninstall Adobe Reader 9.1
    2. Run Windows Clean Utility to remove any remnant of Adobe Reader 8
    3. Re-install Adobe Reader 9.1
    Any other suggestions?
    Need to have this upgrade.

    I'm having a similar issue. Prior to upgrading to Acrobat 9.1 I was able to view PDFs from IE 6. No longer. Instead I get a message: "Error opening document. File cannot be found."
    Help?

  • Exception thrown while processing pdf file with composite fonts using adobe pdf library (v 9.1 )

    Hi All,
    I have an issue with processing composite fonts with adobe pdf library (v 9.1 ).
    While processing a pdf file having composite fonts, the pdf library is throwing an exception.
    The api which throwed exception is "PDPageAcquirePDEContent()". In my code i am calling PDDocGetNumPages(), PDDocAcquirePage() before this api is called, but all those functions suceeded. In the HANDLER, using the ASGetErrorString(), i got this exception error as  "The encoding (CMap) specified by a font is missing."
    Now coming to the input file (which is also attached), this document have three different composite fonts ( details are given below )
    Font Name : TicketBold, Bold(Embedded)
    Font Type : Trueype (CID)
    Encoding : Identity-H
    Font Name : Times-Roman (Embedded)
    Font Type : Type 1 (CID)
    Encoding : Identity-H
    Font Name : TimesNewRomanPSMT (embedded)
    Font Type : TrueType(CID)
    Encoding: Identity-H
    If i convert all the composite fonts to outline using pitstop before processing, it works fine.
    So my question is that whether pdf library doesnt support composite fonts (which i dont think so ) or i need to do a special handling for these kinds of fonts in my application ( which i strongly belive ). If its the latter case, please let me know how to handle it in my application.
    thanks in advance
    best regards
    ~jafeel

    Hi Leonard,
    Thanks for your reply. May i ask you which sample of the PDF Library you used to test my scenario.
    One question i would like to put to you beofre going for filing a formal issue to Adobe will be does this issue has anything to do with the initialization of the pdf library?
    What i meant is that when we call the PDFLInit() we pass a PDFLDataRec structure which is initialized by various path to font folders, cmap folders and unicode folders. Whether if i miss any of these folders will it cause this issue???
    thanks again
    regards
    ~jafeel

  • Unable to create PDF from Word document.

    I was trying to create a PDF file from a Word document but got the following error message: "An unexpected error occurred.  PDFMaker was unable to produce the Adobe PDF" and no PDF was created.  There was no error number.  Has anyone seen this error and is there a work around.  This is Acrobat XI Pro and was installed within the last few days.

    Can you print to the Adobe PDF printer? Have you updated AA XI (now at 11.0.05)? What version of WORD (AA XI does not work with PDF Maker on all versions of WORD)?

  • Unable to store PDF , XL , Word document into SAP archived tables

    Hi Experts,
    I have created a web interface in WD ABAP which stores the employee's attachement data into sap arcived link.
    For that I have carried out following activities.
    I have Complted customizing for a document type under business object PREL and for this I have reffered following link.
    SASAP Archived Link
    Now I have used file Upload UI element in WDABAP which passes the local file data in Xstring to following function modoules for creating
    an attachment.
    data: it_out type TOADT,
    it_storage type ZDMSSTORAGE.
    CALL FUNCTION 'ARCHIV_CREATE_TABLE'
    EXPORTING
    ar_object = 'HRPDATA' " Object catagory that I have created for file storage under Business Object PREL
    object_id = '10000008'
    sap_object = 'PREL'
    document = filedata
    IMPORTING
    OUTDOC = it_out
    EXCEPTIONS
    error_archiv = 1
    error_communicationtable = 2
    error_connectiontable = 3
    error_kernel = 4
    error_parameter = 5
    error_user_exit = 6
    OTHERS = 7.
    For reading the attached document I am using following FM's
    CALL FUNCTION 'SCMS_AO_TABLE_GET'
    EXPORTING
    MANDT = SY-MANDT
    arc_id = 'Z1'
    doc_id = lv_doc_type"im_doc "'4D5D8445165220C8E10000000A3C082E'
    COMP_ID = 'data'
    IMPORTING
    LENGTH =
    tables
    data = bindata.
    *data: BINARY_TAB type
    CALL FUNCTION 'SCMS_BINARY_TO_XSTRING'
    EXPORTING
    input_length = 10000
    FIRST_LINE = 0
    LAST_LINE = 0
    IMPORTING
    BUFFER = V_XSTRING
    tables
    binary_tab = bindata.
    Now when I upload any file text or image file, its working fine. When I try to upload any pdf , XL or word document, it uploads the file into acchived table
    but when I read this file by converting file data into xstring and passing it into file downlod UI element, It says file is corrupt. Please suggest that if that
    is a issue with object catagory configration ( With storage class) or it is wrong way of reading a document for PDF, XL and word
    Thanks in advance
    Abhay

    hi
    please check the function module used whether it can handle the PDF as well as xl, word documents. if not use some other function module

  • I am unable to send pdf files as an attachment using Adobe Send.

    Adobe Send opens Entourage for my email which I no longer use and is in fact defunct, consequently I keep getting "Error" message from Adobe.
    I want Adobe Send to use Outlook but cannot find how I can make Adobe Send choose Outlook instead of Entourage.
    Please assist.
    Danonj

    I don't know if this is any help I have had a problem where the pdf files were not opening correctly which I think was the problem here. I spent hours of head scratching and have now found out what the problem is. Right click on the Adobe Reader Icon on the desktop. Select properties and then the compatibility tab. You will see the uppermost section in this screen is Compatibility mode. I have Windows 7 and mine was set to Windows XP. I changed that to Windows 7 and now the problem is resolved. In short use the above instructions to check you are using the right compatibility mode for the version of Windows you are using and your troubles should be over!!

  • Unable to convert PDF to word docuement

    just bought adobe program to convert PDF file to word docuemet, when i export and follow direction to convert, program come back stating failed to convert the file, why?????

    Hi MaryFran246,
    I'm terribly sorry for the inconvenience this has caused you.
    Could you try these steps to alleviate the access issue you're having:
    Choose Edit > Preferences (Win) or Adobe Reader > Preferences (Mac)
    Click 'Online Services' on the left-hand side
    Sign out of our Adobe ID and sign back in.
    Try to convert your document again.
    If you continue to have trouble, please verify that you can access the service via the web interface.  To do this:
    Open a browser and navigate to http://exportpdf.acrobat.com/signin.html
    Try to log in with your Adobe ID (email address) and password
    Once logged in, follow the on-screen prompts to convert a file
    Let us know if you're still having trouble and we'll try to help!
    -David

  • Facing the Error while opening the PDF Document generated by Adobe Forms

    Hi,
    I have created an Custom Adobe Form and calling this form through a Custom Program and generating the PDF and could able to download on to my desktop but when i am tyring to open it i m facing the below Error.
    "There was an error opening this document. The file is damaged and could not be repaired" .
    Please help me in this regard ASAP.
    Please do find the attached error screen shot.
    Thanks
    Sushil

    Hi Naveen ,
    Have done as per the link but still not opening
    same error.
    I have created a print program and from there want to generate pdf. But it is not working.
    please find the below code : In this i am passing some tables to function module and output is formoutput of type fpformoutput.
    Where do i need to do any changes if required.
    data: lst_opparam     type sfpoutputparams.
       data: lst_docparam    type sfpdocparams.
       data: lfd_fname type funcname.
       data: lrf_cx_root     type ref to cx_root.
       clear: lst_opparam, lst_docparam.
       lst_opparam-getpdf   = 'X'.
       lst_opparam-preview = 'X'.
    *  lst_opparam-nodialog   = 'X'.
       call function 'FP_JOB_OPEN'
         changing
           ie_outputparams       = lst_opparam
      exceptions
        cancel                = 1
        usage_error           = 2
        system_error          = 3
        internal_error        = 4
        others                = 5
       if sy-subrc <> 0.
    * Implement suitable error handling here
       endif.
       try.
           call function 'FP_FUNCTION_MODULE_NAME'
             exporting
               i_name     = 'ZAFGLERC001'
             importing
               e_funcname = lfd_fname.
    *   E_INTERFACE_TYPE           =
    *   EV_FUNCNAME_INBOUND        =
         catch cx_root into lrf_cx_root.
       endtry.
       lst_docparam-langu = 'EN'.
       lst_docparam-country = 'IN'.
    call function lfd_fname      "   '/1BCDWB/SM00000213'
      exporting
        /1bcdwb/docparams        = lst_docparam
        appl                     = 'EREC_ONBRD'
        wa_ztbglerc049           = wa_ztbglerc049
        wa_ztbglerc050           = wa_ztbglerc050
        it_51                    = it_51
        wa_41                    = wa_41
        it_42                    = it_42
        wa_43                    = wa_43
        it_44                    = it_44
        it_45                    = it_45
        it_46                    = it_46
        it_47                    = it_47
        it_48                    = it_48
      importing
        /1bcdwb/formoutput       = formoutput
      exceptions
        usage_error              = 1
        system_error             = 2
        internal_error           = 3
        others                   = 4
    if sy-subrc <> 0.
    * Implement suitable error handling here
    endif.
       call function 'FP_JOB_CLOSE'
    * IMPORTING
    *   E_RESULT             =
    exceptions
      usage_error          = 1
      system_error         = 2
      internal_error       = 3
      others               = 4
       if sy-subrc <> 0.
    * Implement suitable error handling here
       endif.

  • Process data of none bound fields in Adobe Interactive Form (stack 13)

    I use a Adobe interactive form (made in Designer 7.0)which is a combination of fields bound to Web Dynpro Context fields and fields which has no binding at all (in Designer: Default binding = Normal). The Adobe Document Services on the J2ee server is of stack 13.
    When I save the Adobe Form (off-line scenario)from the Web Dynpro Application, only fields bounded to the Web Dynpro Context are saved in the Form on my local file system(no warning that data isn't saved).
    When I open the Form for off-line editing, I can change bounded fields and none bounded fields. But when I save and re-open the form, the data in the none bounded fields is lost.
    I used the same scenario in a stack 11 j2ee/portal system, but then all data (bounded or not) in the form was saved!
    Could anyone explain the difference, but better tell me how to save both kind of fields in the off-line form (and bounding all fields is <u>not</u> a solution).
    Thanks in advance,
    Richard

    Hi,
    Check your ADS settings, I feel it's due to lack of some config in ADS only.
    Regards
    <i><b>Raja Sekhar</b></i>

  • Unable to create PDF/A with PDF from InDesign

    Hello,
    I'm trying to create PDF/A document from InDesign CS4 with Adobe Acrobat 9.
    I create my PDF from InDesign (I create a tagged PDF).
    For each document create from InDesign, I receive this message from the Preeflight "Convert to PDF/A (sRGB)" of Acrobat.
    PDF document is not compliant with PDF/A-1a (2005)
    - Structured PDF : Type entry in a structure element not "StructElem"
    - Structured PDF : Type entry missing
    Thank for your help.
    Cyril.

    Hi graffiti,
    let me clarify my question. Indesign doesn't export to PDF/A1a.
    Acrobat has to convert a tagged PDF 1.5 document generated by indesign to PDF/A1a.
    If anyone could explain the errors to me:
    - Structured PDF : Type entry in a structure element not "StructElem"
    - Structured PDF : Type entry missing
    ...this would also be greatly appreciated so i can narrow my search.
    Since you guys are the PDF experts and Acrobat does the conversion i believe this forum is the place to find answers.
    (Also the problem has already been presented on the indesign-forum: http://forums.adobe.com/message/1959226#1959226 where the advise was to pose the question here)

Maybe you are looking for

  • IPhone remote app disconnects, iPad does not

    Environment Info Windows 7 64-bit iTunes 12.1.2.27 Latest update on iPhone and iPad Remote app Single network, single wireless access point I have home sharing turned on in iTunes, I play my music throughout my entire house from my PC and control via

  • How many sheets can you save in a Numbers file?

    Hi folks.  I am desperate for help.  I have a very important Numbers file that I am working with, where I need to add 289 "sheets" to a single file.   Everythign was fine, until I am trying to add my 146th sheet.   When I add that next sheet, It will

  • Error while syncing mail accounts

    iTunes could not sync mail accounts to the iPhone "..." because an error occurred remapping record identifiers. Try syncing your iPhone again.If the problem persists, replace the mail accounts on the iPhone from the info tab in the iPhone preferences

  • Help with buttons within buttons

    I am trying to get stop and play buttons for the background music of my site to work within an animated rollover state of a separate button. When I put the stop and play buttons into the rollover animation they effect the hit state of the button they

  • HT4623 how can i update iOS 3.1.2 to 4.3.

    how can i update iOS 3.1.2 to 4.3.