livecycle

How do you create PDF Form Fields that will expand to contain their content?

 ̄綄美尐妖づ 提交于 2019-12-11 06:33:11
问题 I have a field on a PDF form that could be too small for the contents it needs to hold. Since it is already nearly the size of the page, I need a way to tell adobe to let that field grow to cover more than a page. I haven't found any way to do this. LiveCycle seems to act like you can do it, but everything tried so far, does not do anything more than add a scroll bar in the online view, and the fails to print all the content. Acrobat doesn't even act like it is possible. Any ideas? 回答1: If

Digital Signing of XFA forms

痴心易碎 提交于 2019-12-10 12:14:45
问题 I'd like to sign PDF documents created in Adobe Livecycle (it is XFA form) programmatically. I know about iText library for manipulating with PDFs, but I haven't found any example how to sign it yet. Maybe its not supported yet. Do you know any other Java library which can do that? Or do you know a way how to sign it? I know, my question is similar to this opened question, but I don't need the use of iText. Thank you very much for your help! 回答1: This is a small example showing how to sign

How to load images and fragments dynamically in LiveCycle Designer forms?

北战南征 提交于 2019-12-06 15:10:24
问题 I've created a couple of shared templates (.xdp) which will be shared among several clients. Obviously, each client has their own logo and I'd like to set the logo upon form generation. I've managed to change the logo dynamically although I'm not sure if my approach is good. In the xml datasource I've got this element: <ClientID>SomeNumber</ClientId> In the form itself I set the image href with this javascript code: SomeHiddenTextField::calculate HeaderLogo.value.image.href = $record.ClientID

Reader extensions not needed anymore for digital signature in Acrobat Reader DC?

走远了吗. 提交于 2019-12-06 13:47:53
问题 In a business environment we have Adobe LiveCycle ES for several years. A key feature is to enable "Reader extensions" in PDFs, which unlocks some features in Adobe Reader for reader extended PDFs. One of them was allowing user to digitally sign empty signature fields in Adobe Reader. I remember nothing happened when clicking on the signature field in Adobe Reader if the PDF was not "reader extended". This is the case e.g. if the PDF was generated using iText. This limitation is still

What might cause a inaccessiblewsdlexception?

倾然丶 夕夏残阳落幕 提交于 2019-12-06 00:30:01
问题 I'm updating some web service clients into some old java applications to call an axis2 third party web service. I've been provided with a wsdl file, so I've developed a jar containing the client to this service as described in the following (mine) post: JAX-WS client : what's the correct path to access the local WSDL?. It works on some application but not in others where it throws an inaccessibleWSDLException at the moment of instantiating the proxy class. Below I've posted my jax-ws-catalog

What might cause a inaccessiblewsdlexception?

青春壹個敷衍的年華 提交于 2019-12-04 06:28:36
I'm updating some web service clients into some old java applications to call an axis2 third party web service. I've been provided with a wsdl file, so I've developed a jar containing the client to this service as described in the following (mine) post: JAX-WS client : what's the correct path to access the local WSDL? . It works on some application but not in others where it throws an inaccessibleWSDLException at the moment of instantiating the proxy class. Below I've posted my jax-ws-catalog file: <?xml version="1.0" encoding="UTF-8" standalone="no"?> <catalog xmlns="urn:oasis:names:tc:entity

Serializing immutable java classes to actionscript with LCDS

隐身守侯 提交于 2019-12-03 13:52:53
I've got a complex object which is being managed by the LCDS DataServices data management and being created/updated etc using custom assemblers. The vast majority of the object hierarchy is being serialized/deserialized correctly but I've hit a stumbling block when it comes to serializing immutable java classes. In a java only world I would use the java writeReplace and readResolve methods as this excellent blog describes: http://lingpipe-blog.com/2009/08/10/serializing-immutable-singletons-serialization-proxy/ This is how I originally wrote my java class, expecting livecycle to call the

How to display a XDP pdf file in browser like how normal PDF file open?

懵懂的女人 提交于 2019-12-01 12:30:26
I have a XDP file that Acrobat can open. It contains a PDF plus some data to fill in the form fields in the PDF. In my HTTP request header I set content-type to "application/vnd.adobe.xdp+xml" and Content-Disposition to "in-line" still my browser downloads the file and asks me if I want to Open it or save it. When I click on Open it loads the PDF form and data inside Acrobat, not in the web browser. Do you have any idea? UPDATE: I reinstalled the Adobe plugin and now browser(FireFox) attempts to open the PDF but I get the following error : that is very strange as the file is created by Acrobat

How can I merge data into an XDP file and return a PDF (via .NET)?

风格不统一 提交于 2019-12-01 06:15:43
My team has a template (XDP) that we've created with the Adobe LiveCycle designer. The situation: We are replacing an old Acrobat form (XFDF format) with this LiveCycle form as part of a much larger upgrade The current Acrobat form is dynamically populated with basic data and delivered to the user as a PDF (the user clicks a link and a PDF opens on their machine pre-populated with basic demographic details) The current process looks something like: user clicks, .NET app retrieves data, .NET app retrieves PDF from file system, .NET app serializes data into template in XFDF form, ASP.NET app

How can I merge data into an XDP file and return a PDF (via .NET)?

吃可爱长大的小学妹 提交于 2019-12-01 05:29:06
问题 My team has a template (XDP) that we've created with the Adobe LiveCycle designer. The situation: We are replacing an old Acrobat form (XFDF format) with this LiveCycle form as part of a much larger upgrade The current Acrobat form is dynamically populated with basic data and delivered to the user as a PDF (the user clicks a link and a PDF opens on their machine pre-populated with basic demographic details) The current process looks something like: user clicks, .NET app retrieves data, .NET