Problem in rendering pdf

Hi,
I need to render a XDP File with XML File to produce a PDF Document.
I came to know that there are 2 Serivce's which i can make use of it..
1.generetePDF
2.renderPDFForm
Service : generatePDF
When i tried using this Service  i got the PDF File..but its a Static PDF File.. i can't Edit the PDF File.
I want a PDF file which i can EDIT Manually..
And i want to know how to use renderPDFForm Service to generate PDF from the given inputs both xdp and xml file.
Please help me out to solve this problem....!
Thanks,
kruthi

Hi,
You have to use renderPDF service if you wish  that dynamic interactive pdf form will be the output of your process.
Set the name of your xdp template in the "Form to Render" field, name of the xml file data as a "Form Data" and enter the path to your template as "Content Root URI".
In the output section set the name of the variable to hold the rendered document in the "Rendered Form" field.
Note that the path should be started with: "repository:///" and then the path to your template.
For example if the name of you tempate is form.xdp and it is located in Forms folder of your repository, you should set form.xdp as Form to Render and "repository:///Forms" as Content Root URI.
Hope this helps,
Yan.

Similar Messages

  • Stop Safari from rendering PDF natively

    According to this Adobe article, Safari 5.1 renders PDF documents natively. I have Safari 5.1 (7534.48.3) on Lion 10.7.1.
    I am tired of Safari opeing PDF's automatically for me. I would like to download PDF's when I left-click on links for PDF's.
    (1) Terminal commands such as defaults write com.apple.Safari WebKitOmitPDFSupport -bool YES no longer work.
    (2) I made sure that AdobePDF does not exist in /Library/Internet Plug-Ins.
    Any idea? 

    I am having a similar (if not the same) problem.  When I go to certain websites, instead of displaying the image in the window, Safari automatically downloads files with such names as get.php.pdf or dlraw.cgi.pdf.  This didn't happen before on the same websites.  I contacted one of the site owners, and they haven't changed anything.  Unfortuantely, on both sites (Lybrary.com and askalexander.org) you need my password to get at the pages I'm having trouble with, so I can't point you to a page directly.
    On other sites, Safari is acting as expected (shows the pdf in the window without any download).
    I'm running OS 10.6.8 and Safari 5.1
    Any help would be appreciated.
    Thanks,
    Frank

  • SaveFrameBookAsPdf using FDK11 gets the contents cropped to the top and right of the rendered PDF.

    Hi,
    I am using a method to Save Frame file as PDF using FDK 11 and this works fine. Currently, I have a requirement to Save the whole Frame book as PDF for which i am trying with the same method but the output is not accurate. The contents in the rendered PDF is cropped to the Top and Right. Tried several options and could not figure out the cause of the issue. any help would be highly appreciated.
    Used Method:
               long SaveAsPdf(char* strSourceFileName, char* strTargetFileName)
                    F_PropValsT params, *returnParams = NULL;
                    F_ObjHandleT docId, pgfId, saveId;
                    IntT i = 0;
                    StringT name = NULL;
                    StringT str_Target_File_Name;
                    long bookId;
                    str_Target_File_Name = F_StrCopyString((StringT)strTargetFileName);  
                    F_FdeInit();
                    /* Open all files */
                    bookId = openBookFiles(strSourceFileName);
                    /* Get docId in order to set Acrobat Bookmark levels */
                    docId = F_ApiGetId(FV_SessionId, FV_SessionId, FP_FirstOpenDoc);
                    /* Sets the save parameters so as to save as PDF and allow user to name file.*/
                    params = F_ApiGetSaveDefaultParams();
                    i = F_ApiGetPropIndex(&params, FS_FileType);
                    params.val[i].propVal.u.ival = FV_SaveFmtPdf;
                    /* Saves the book and all its components to one PDF file */
                    saveId = F_ApiSave(bookId, str_Target_File_Name, &params, &returnParams);
                    /* Close the open files.*/
                    while (docId)
                        F_ApiClose(docId, FF_CLOSE_MODIFIED);
                        docId = F_ApiGetId(FV_SessionId, FV_SessionId, FP_NextOpenDocInSession);
                    F_ApiDeallocatePropVals(&params);
                    F_ApiDeallocatePropVals(returnParams);
                    return (long)saveId;
                long openBookFiles(char* strSourceFileName)
                    IntT i = 0;
                    F_PropValsT script, *returnp = NULL;
                    F_ObjHandleT compId;
                    F_ObjHandleT docId;
                    StringT compName = NULL;
                    StringT str_Source_File_Name;
                    str_Source_File_Name = F_StrCopyString((StringT)strSourceFileName);  
                    /* create open script which minimizes user response*/
                    script = F_ApiGetOpenDefaultParams();
                    i = F_ApiGetPropIndex(&script, FS_MakeVisible);
                    script.val[i].propVal.u.ival = False;
                    i = F_ApiGetPropIndex(&script, FS_RefFileNotFound);
                    script.val[i].propVal.u.ival = FV_AllowAllRefFilesUnFindable;
                    i = F_ApiGetPropIndex(&script, FS_FileIsOldVersion);
                    script.val[i].propVal.u.ival = FV_DoOK;
                    i = F_ApiGetPropIndex(&script, FS_FontChangedMetric);
                    script.val[i].propVal.u.ival = FV_DoOK;
                    i = F_ApiGetPropIndex(&script, FS_FontNotFoundInCatalog);
                    script.val[i].propVal.u.ival = FV_DoOK;
                    i = F_ApiGetPropIndex(&script, FS_FontNotFoundInDoc);
                    script.val[i].propVal.u.ival = FV_DoOK;
                    i = F_ApiGetPropIndex(&script, FS_LanguageNotAvailable);
                    script.val[i].propVal.u.ival = FV_DoOK;
                    i = F_ApiGetPropIndex(&script, FS_LockCantBeReset);
                    script.val[i].propVal.u.ival = FV_DoOK;
                    i = F_ApiGetPropIndex(&script, FS_UpdateTextReferences);
                    script.val[i].propVal.u.ival = FV_DoNo;
                    i = F_ApiGetPropIndex(&script, FS_UpdateXRefs);
                    script.val[i].propVal.u.ival = FV_DoNo;
                    i = F_ApiGetPropIndex(&script, FS_UseAutoSaveFile);
                    script.val[i].propVal.u.ival = FV_DoNo;
                    i = F_ApiGetPropIndex(&script, FS_UseRecoverFile);
                    script.val[i].propVal.u.ival = FV_DoNo;
                    i = F_ApiGetPropIndex(&script, FS_AlertUserAboutFailure);
                    script.val[i].propVal.u.ival = False;
                    i = F_ApiGetPropIndex(&script, FS_BeefyDoc);
                    script.val[i].propVal.u.ival = FV_DoOK;
                    i = F_ApiGetPropIndex(&script, FS_FileIsInUse);
                    script.val[i].propVal.u.ival = FV_OpenViewOnly;
                    i = F_ApiGetPropIndex(&script, FS_FileIsStructured);
                    script.val[i].propVal.u.ival = FV_OpenViewOnly;
                    i = F_ApiGetPropIndex(&script, FS_OpenFileNotWritable);
                    script.val[i].propVal.u.ival = FV_DoOK;
                    long bookId = F_ApiOpen(str_Source_File_Name, &script, &returnp);
                    F_ApiDeallocatePropVals(&script);
                    return long(bookId);

    Here's a clip:
    http://depositfiles.com/files/xqqnadc88
    This clip is made up of two clips on top of one another, Video 1 has a 50% right crop and Video 2 has a 50% left crop.  Video 2 crossfades into a clip of the scene with no actors in it which also has a 50% left crop.  I have had this issue on footage shot with two different cameras, one a Sony HD camcorder and the other a little Fujifilm point and shoot still camera with HD video capabilities.  Perhaps "randomly" is the wrong word to use though because I have tried recreating this and other scenes from scratch a few times and I always have the same problem with the right side of the screen disappearing at the same time no matter what I do.  In the project I am working on, I have several scenes where this effect is needed and some of the footage seems to work fine while other scenes consistently give me this issue.
    I also just remembered that I have CS4 (but CS3 runs a little better on my computer) so I'll try putting the clip together in CS4 and see if it still does the same thing.

  • Problem with preview PDF files on Windows 7 32bit

    Hello,
    in my office I have a problem with preview PDF files on my computers. The files are allright, but if I select a file and click on preview mode after ~ 10sec operation system write something "Preview this file is corrupt for PDF Preview Handler wrong". On other 64bit computers with same programs the preview is work. I try uninstall all Adobe soft (Reader, Flash), clean all Adobe data from folders in root and in register, but it is not solve this problem. On Microsoft forums wrote me, that the problem is probably with AR plugin.
    So, can someone help me?
    Config PC:
    Windows 7 32/64bit Pro
    Intel i3, 4GB
    Adobe Reader 11.0.5
    Adobe Flash Player 15 ActiveX
    Adobe Flash Player 15 plugin
    Preview Handler Surrogate Host ver.: 6.1.7601.17514
    Thank you for help.

    I think I figured it out after reading other forums. Thanks!

  • Problems converting a pdf file to a word document using ExportPDF

    I am having problems converting a pdf file to a word document (.docx) using ExportPDF. It is spends ages trying to upload the PDF file, but fails to do so. Should I just cancel my subscription?

    I suspect that you are asking for help with CreatePDF. If so, you should post in
    http://forums.adobe.com/community/createpdf
    This is the Reader forum...

  • Problem with printing pdf

    IF POSSIBLE REPLY IN ITALIAN
    HI, i ve got a big problem.
    i 've to create an A0 page in vectorial pdf, which has connected different files: .psd files for the images with transparency, and vectorial .pdf for the drawings from cad.
    When i ve created my page, i export that in print pdf high quality.
    1° problem: sometimes it fails and tells me there s not enough memory
    2° problem: when print pdf is created, the plotter can t load it to print, it stops at 40% loading.
    there s a way to make an easy vectorial print pdf?
    using vectorial eps instead of vectorial pdf?
    using transparent tiff instead of psd?
    THANKS

    thank you for the fast reply Peter. Im working on an achitecture poster for my last exam, and it contains vector graphics sometimes overlayed on raster images.
    i don t like to use illustrator too, im using 3 programs already to create this poster. do u think .ai are easier than eps???
    i ve tryed to save new pdf without layers, but it didn t work. then i ve tryed to change pdf with eps on indesign, and now the print pdf saving is really faster. im gonna try to plot it and then i ll tell u what s changed.
    OH most important, i was drag n dropping pdf into indesign, and i read it s really wrong! so now i import vector eps to indesign ...
    Plot test...
    TY

  • Problem with printing pdf file

    hello,
    lately i have problem with printing pdf file:
    i click on the print button and the respod is very slow
    it takes more than a minute till the print window apears.
    i tryied to install version X but it's the same, the problem exist only when printing via adobe reader,
    other programs i'd working much faster.
    please advice,
    thank you

    No, it is not set to overprint. Also, I have to add that the printing results were not consistent. Sometimes it covered and sometimes it did not.

  • I have a problem with two PDF's when trying to open them through a link on a web page. The two PDF's open fine with Adobe on my own PC and on the server I have copied it to but when they are opened through a link on a web page (pointing to the server wher

    I have a problem with two PDF's when trying to open them through a link on a web page. The two PDF's open fine with Adobe on my own PC and on the server I have copied it to but when they are opened through a link on a web page (pointing to the server where the PDFs open fine) I get an error 'There was an error processing a page. Invalid function resource' The other one just doesn't open at all. Can anyone help with this please?

    Hello,
    Are the pdf linked correctly in the website? Is this a public website? If yes, please post the link here.
    ~Deepak

  • Safari 7.0.6, using Adobe Acrobat 11.0.10, aren't rendering pdf files in the Print Preview screen.  Additionally, only a single, blank page prints for a multi-page pdf document.  Any ideas?

    Safari 7.0.6, using Adobe Acrobat 11.0.10, isn't rendering pdf files in the Print Preview screen.  Additionally, only a single, blank page prints for a multi-page pdf document.  Any ideas?

    Figured it out.  It had nothing to do with the software levels of Safari or Adobe Acrobat.  Here's the fix:
    Open Finder/Applications
    Search "Internet Plug-Ins"
    Move any Adobe plug-ins to the trash
    Quit Safari
    Launch Safari
    Your pdf document should now render in Print Preview and print properly.

  • Problem converting from pdf to doc (encrypted or corrupt file?)

    Hi everyone.
    I need to convert my resume (pdf) to doc so I can make a couple of edits, and then convert it back to pdf. Problem is, I can't seem to do it. I first tried straight from the program in adobe by saving the file as a doc, but the file formating was way too screwed up when I did that.
    So, I then googled around, and found zamzar.com. I tried that site, but kept getting conversion errors which said "file may be encrypted, password protected, or corrupt". I don't have any passwords or encryptions on it, so I tried downloading other conversion programs, but I kept getting the same types of errors.
    I checkd the "security properties" for the file, and I don't have anything. I also don't know how the file could be corrupt since I don't have any issues viewing it, and when I sent it to my friend via email, he was able to open it, too.
    Ihave recently been using Acrobat 9 pro extended version that I downloaded as a torrent from a reputable person. I just wanted to get a feel for the program, but maybe this is the problem, since any pdf I've saved since I began using it, seems to have that conversion issue, but I figure there has to be a workaround. I really don't know what the issue is, or how I can solve it, and so I'm stumped.
    Any suggestions would be really great.
    Thanks a lot.

    This is a good read for anyone attempting to convert a PDF to a Word document...
    http://www.planetpdf.com/enterprise/article.asp?ContentID=PDF-to-Word_Conversion_-_Why_it_ is_so_hard_to_do&gid=7837&fa

  • Problem with creating pdf from Microsoft Publisher 2013

    We are having problems in creating pdfs from Microsoft Publisher2010- When the function 'Adobe PDF' is selected and 'Print' is clicked on nothing happens. The progress bar just sits there for several minutes without creating a pdf. We have to click on cancel and when this is done this crashes Microsft Publisher.
    I have repaired this using the repair facility in Acrobat 9. I have also uninstalled Acrobat 9 and reinstalled this.
    I have also uninstalled Adobe Reader XI and reinstalled Adobe Reader 9.
    Before uninstalling Acrobat I also ran the updates but this didnt help either.
    This is on a Windows 7 PC (64-bit)
    Adobe Acroabt 9 Pro Extended
    Microsoft Publisher 2010.
    Any help is appreciated.
    Thanks

    MS Publisher 2010 is not supported by the Acrobat 9 Family; and the PDFMaker extension for Publisher has been removed completely from the Acrobat XI Family, so upgrading won't help either. Sorry!
    See http://helpx.adobe.com/acrobat/kb/compatible-web-browsers-pdfmaker-applications.html#main_ PDFMaker_compatible_applications

  • I'm having problems opening my pdf files. I'm running windows XP and have adobe reader XI (11.0.06)

    I'm having problems opening my pdf files. I'm running wiondows Xp and have adobe reader XI(11.0.06) installed.

    What kind of problems? What happens when you try? Any error messages?

  • Problem using the PDF Printer driver in LC ES 8.2

    Hi all,
    I have a problem making the PDF Generator Printer driver work. I am able to print a document, and it is successfully converted to pdf, but the send email service fails. The error message is:
    2008-08-27 15:22:21,671 INFO [com.adobe.ipp.pdfgclient.ResponseGenerator] ALC-PDG-006-017-Refetched the email configuration details from provider.email_sendmail_service after 5 minutes.
    2008-08-27 15:22:21,671 INFO [STDOUT] java.lang.Exception: 40002
    2008-08-27 15:22:21,671 INFO [STDOUT] at com.adobe.ipp.pdfgclient.EmailSender.send(EmailSender.java:135)
    2008-08-27 15:22:21,671 INFO [STDOUT] at com.adobe.ipp.pdfgclient.ResponseGenerator.sendmail(ResponseGenerator.java:154)
    2008-08-27 15:22:21,671 INFO [STDOUT] at com.adobe.ipp.pdfgclient.ResponseGenerator.sendResponse(ResponseGenerator.java:95)
    2008-08-27 15:22:21,671 INFO [STDOUT] at com.adobe.ipp.pdfgclient.JobIdPoller.run(JobIdPoller.java:94)
    2008-08-27 15:22:21,671 INFO [STDOUT] at java.util.TimerThread.mainLoop(Timer.java:512)
    2008-08-27 15:22:21,671 INFO [STDOUT] at java.util.TimerThread.run(Timer.java:462)
    I tried with two different mail servers, with same result. I have configured both EmailService: 1.0 and SendEmailService: 1.0 . Has anyone encountered this error before?

    Hi,
    I have configured provider.email_sendmail_service: 1.0 service according to our mail server. And also I have configured print driver on client with a user which is synchronized with our directory. But I cant receive the converted pdf as email; I get the following:
    2008-11-24 18:01:15,171 INFO [com.adobe.ipp.pdfgclient.PsToPDF] ALC-PDG-001-000-Submitted : review.txt - Notepad IPPJob ID cf3bb155c0a8021c0000000013f1c773
    2008-11-24 18:01:15,203 INFO [com.adobe.pdfg.DistillerImpl] ALC-PDG-001-000-
    Job ID for the submitted createPDF job =ipp.ps251ac9-4cb1e5-412c5b-9ec173-b0cd7e-2e7462
    2008-11-24 18:01:15,234 INFO [com.adobe.pdfg.DistillerImpl] ALC-PDG-001-024-ipp.ps: Time Job Submitted: 11/24/08 6:01 PM
    2008-11-24 18:01:15,234 INFO [com.adobe.pdfg.DistillerImpl] ALC-PDG-001-016-ipp.ps: Job Type: Convert to PDF
    2008-11-24 18:01:15,234 INFO [com.adobe.pdfg.DistillerImpl] ALC-PDG-001-017-ipp.ps: Job Submitted by User: oguzatak
    2008-11-24 18:01:15,421 INFO [com.adobe.pdfg.DistillerImpl] ALC-PDG-001-008-Begin PS/EPS/PRN to PDF Conversion
    2008-11-24 18:01:15,828 INFO [com.adobe.pdfg.DistillerImpl] ALC-PDG-001-009-END PS/EPS/PRN to PDF Conversion
    2008-11-24 18:01:15,828 INFO [com.adobe.pdfg.DistillerImpl] ALC-PDG-001-027-ipp.ps: Job Completion Status: Succeeded
    2008-11-24 18:01:15,828 INFO [com.adobe.pdfg.DistillerImpl] ALC-PDG-001-025-ipp.ps: Time Job Completed: 11/24/08 6:01 PM
    2008-11-24 18:01:15,828 INFO [com.adobe.pdfg.DistillerImpl] ALC-PDG-001-026-ipp.ps: Time of Job Execution: 625 ms
    2008-11-24 18:01:16,328 INFO [com.adobe.ipp.pdfgclient.ResponseGenerator] ALC-PDG-006-017-Refetched the email configuration details from provider.email_sendmail_service after 5 minutes.
    2008-11-24 18:01:16,515 INFO [com.adobe.ipp.pdfgclient.EmailSender] EmailSender error : 550 The address is not valid.
    2008-11-24 18:01:16,515 INFO [STDOUT] java.lang.Exception: 550 The address is not valid.
    2008-11-24 18:01:16,515 INFO [STDOUT] at com.adobe.ipp.pdfgclient.EmailSender.send(EmailSender.java:247)
    2008-11-24 18:01:16,515 INFO [STDOUT] at com.adobe.ipp.pdfgclient.ResponseGenerator.sendmail(ResponseGenerator.java:154)
    2008-11-24 18:01:16,515 INFO [STDOUT] at com.adobe.ipp.pdfgclient.ResponseGenerator.sendResponse(ResponseGenerator.java:95)
    2008-11-24 18:01:16,515 INFO [STDOUT] at com.adobe.ipp.pdfgclient.JobIdPoller.run(JobIdPoller.java:94)
    2008-11-24 18:01:16,515 INFO [STDOUT] at java.util.TimerThread.mainLoop(Timer.java:512)
    2008-11-24 18:01:16,515 INFO [STDOUT] at java.util.TimerThread.run(Timer.java:462)
    I have double checked the users credential for smtp user.

  • Problem Importing a PDF into Indesign CC

    We don't usually have this problem with InDesign CC, but this came at a very bad time and I'm not sure if it is a bug in InDesign CC or not. We were given a PDF from an auditor of a client to bring into their financial report. The strange thing is that we were only able to bring in pages on left pages, any page that was brought in on the right hand page did not show. In fact, if we copied a page that showed up on the left page and moved it to the right page, it would not show it.
    Fortunately we still have CS6 and we were able to place the same PDF with no problem. So we had to save the document into a CS6 format and then insert the PDF.
    I don't know what would have caused this, but we haven't had problems with other PDFs. It seems that there was something about that PDF that InDesign CC didn't like (but that CS6 was able to handle).
    Any ideas?

    I think we'd need to see samples from the actual .indd and PDF files to give you any real answers.

  • InDesign CS5.5 Problem - Crash during PDF export (Runtime Error)

    Hello,
    I'm working with Adobe CS5.5 and have a problem with the PDF-export of some of my projects.
    The problematic projects are rather big (44-124 pages) with lots of pictures.
    The error I get during export is:
    [Headline:] Microsoft Visual C++ Runtime Library
    Runtime Error!
    Program: C:\...
    This application has requested the Runtime to terminate it in an unusual way.
    Please contact the application's support team for more information
    The program is not specified in the error.
    Export works fine for these files on my collegues computer with the same settings (hardware and software are almost a match).
    Microsoft Runtime Library was completely reinstalled without solving the problem.
    Any suggestions how to solve this problem?
    Thank you very much
    T.S.

    Adobe Community: File Crashing on Output - printing/PDF/other

Maybe you are looking for

  • Apple TV playing up

    My Apple TV has started to mess up starting today, it's lost all of the channels apart from the settings and the computers channels, I HAVE TRIED the plug into iTunes method and it didn't work, I then unplugged it from the way and the Television and

  • How to modify the DN of an entry in ods schema in Oracle Internet Directory

    Hi, I want to modify dn of an entry in ods schema. Now my dn is: uid=1234567,cn=Users,dc=brand,dc=com and I want to change to 'uid=Tester001,cn=Users,dc=brand,dc=com'. Here 'Tester001' is a value of 'sn'. I have to replace the value of uid=1234567 to

  • Guest configuration with WLC

    i am using WLC 4402 with firmware 5.1 and 1252 Access Point. i am in trouble to configure guest access with the WLC. i have configured interface in WLC under CONTROLLER->INTERFACES->GUEST. WHEN I SELECT THIS INTERFACE AS GUEST IT DOESN'T TAKE IP ADDR

  • In system information, battery information for 17in m.b.p

    in system information, battery information for 17in m.b.p what should the readings be for a new battery,anyone, thanks peter

  • Exporting Crystal 11 Report to PDF

    Hi, I wish to run crystal reports on web server from asp code ( or any other method ). The code that is in use was not written by me so I don't really follow what is going on. We wish to run and export the report to pdf so that the user can view the