Metadata in LiveCycle

Is there a way to set up meta data in LiveCycle that will map over to Adobe?  In the adobe properties there is a "Keyword" section.  Where can get enter the Keywords in LiveCycle to that they will map over to that keyword section in Adobe?
Thanks!
Jodi

In the xml you want to add this:
<dc:subject>
            <rdf:Bag>
              <rdf:li>Keywords</rdf:li>
              <rdf:li>keyword 2</rdf:li>
              <rdf:li>keyword 3</rdf:li>
            </rdf:Bag>
</dc:subject>
The meta data in XML is located at the bottom.  Locate the following and add the script.
<rdf:Description xmlns:xmp="http://ns.adobe.com/xap/1.0/" rdf:about="">
        <xmp:CreatorTool>Adobe LiveCycle Designer ES 8.2</xmp:CreatorTool>
        <xmp:ModifyDate>2011-04-04T13:15:27-05:00</xmp:ModifyDate>
        <xmp:CreateDate>2006-03-24T12:09:19-05:00</xmp:CreateDate>
        <xmp:MetadataDate>2011-04-04T18:17:18Z</xmp:MetadataDate>
      </rdf:Description>
      <rdf:Description xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" rdf:about="">
        <xmpMM:DocumentID>uuid:2b8434e9-051b-4cd4-946d-4a430813611d</xmpMM:DocumentID>
        <xmpMM:InstanceID>uuid:f38d5eb5-91f9-4597-83de-d564cb55505a</xmpMM:InstanceID>
      </rdf:Description>
      <rdf:Description xmlns:dc="http://purl.org/dc/elements/1.1/" rdf:about="">
        <dc:format>application/pdf</dc:format>
        <dc:subject>
            <rdf:Bag>
              <rdf:li>Keywords</rdf:li>
              <rdf:li>keyword 2</rdf:li>
              <rdf:li>keyword 3</rdf:li>
            </rdf:Bag>
        </dc:subject>
Ida Eve.Tracy

Similar Messages

  • How to get the metadata in Designer?

    In Acrobat, I can get the metadata by "this.metadata".
    The Designer's Help  said: use "xfa.form.desc" to instead of "this.metadata".
    The "desc" has a method "metadata(Integer para)" to return the metadata's info.
    I use the code "xfa.form.desc.metadata(0)" in designer.
    But alert the error "GeneralError :Operation failed".
    Who can tell me how  to get the metadata in Designer?
    Thanks.

    Thank you,radzmar.
    I use the "xfa.host.messageBox(""+xfa.event.target.metadata);" in a button's clickEvent.
    But the error is same.
    My target is:
    Now,I have a blank PDF create by Designer.
    Only one button in this PDF.
    When I click the button,then show the metadate'info for me.
    My code is:
    try{
    var tDesc=xfa.form.desc;
        xfa.host.messageBox(""+tDesc.metadata(0),"",3);
    }catch(e){
    xfa.host.messageBox(""+e);
    But it is incorrect;
    I want to get a simple about get metadata info.
    the metadata info like:
    <rdf:Description xmlns:xmp="http://ns.adobe.com/xap/1.0/" rdf:about="">
             <xmp:MetadataDate>2010-11-18T07:37:45Z</xmp:MetadataDate>
             <xmp:CreatorTool>Adobe LiveCycle Designer ES 9.0</xmp:CreatorTool>
             <xmp:ModifyDate>2010-11-18T13:14:40+08:00</xmp:ModifyDate>
             <xmp:CreateDate>2010-11-18T11:25:05+08:00</xmp:CreateDate>
          </rdf:Description>
          <rdf:Description xmlns:pdf="http://ns.adobe.com/pdf/1.3/" rdf:about="">
             <pdf:Producer>Adobe LiveCycle Designer ES 9.0</pdf:Producer>
          </rdf:Description>

  • How to get XMP MetaData as an XML String in a process?

    Hi there,
    I have a process where I would like to export a documents XMP MetaData, manipulate the XMP MetaData and then import the MetaData again to the document.
    I thougt first I will use the service Name "XMPUtilityService" with the Service Operation "Export XMP" to export the XMP MetaData as a document.
    Hoewer I am not sure how to manipulate the output document from the Export XMP service.
    When I print out the document.toString() in a execute Script Service I get the following:
    <document state="active" senderVersion="0" persistent="false" senderPersistent="false" passivated="false" senderPassivated="false" deserialized="false" senderHostId="null" callbackId="0" senderCallbackId="0" callbackRef="null" isLocalizable="true" isTransactionBound="false" defaultDisposalTimeout="600" disposalTimeout="600" maxInlineSize="65536" defaultMaxInlineSize="65536" inlineSize="3440" contentType="null" length="-1"><cacheId/><localBackendId/><globalBackendId/><senderLocalBackendId/><senderGl obalBackendId/><inline><?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
    <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="A...</inline><senderPullServantJndiName/><attributes/></document>
    Actually I expected something like this:
    <?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
    <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-jc006 DEBUG-1.0, 2009 Jun 23 11:07:21-PDT">
       <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
          <rdf:Description rdf:about=""
                xmlns:pdf="http://ns.adobe.com/pdf/1.3/">
             <pdf:Producer>Adobe LiveCycle PDF Generator ES2</pdf:Producer>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:xmp="http://ns.adobe.com/xap/1.0/">
             <xmp:ModifyDate>2010-04-20T20:43:59+02:00</xmp:ModifyDate>
             <xmp:MetadataDate>2010-04-20T20:43:59+02:00</xmp:MetadataDate>
          </rdf:Description>
          <rdf:Description rdf:about=""
                xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/">
             <xmpMM:DocumentID>uuid:0cf2c6c6-2fba-2b39-5fb6-33ad8ccf58aa</xmpMM:DocumentID>
             <xmpMM:InstanceID>uuid:187bc5a2-acb0-2fa9-711d-33ad8ccf58aa</xmpMM:InstanceID>
          </rdf:Description>
       </rdf:RDF>
    </x:xmpmeta>
    <?xpacket end="w"?>
    What do I need to do to get the XMPMeta data as an XML String from a document within a process?
    Thanks in advance!
    Paul

    Hi,
    thanks for the answer.
    I know that I can retrieve the XMPUtilityMetadata object, but this object provides only access to a few information suche as creator, subject, producer, etc.
    However I would like to retrieve the whole XML String of the XMP Metadata.
    How is this possible?
    Thanks.
    Paul

  • Is LiveCycle Designer ES 8.2 LiveCycle ES2 or ES1?

    Hi,
    I am confused with all the LiveCycle release conventions.
    Is LiveCycle Designer ES 8.2 LiveCycle ES2 or ES1?
    I am using Designer ES8.2. I manually added some PDF metadata to XDP form in the XML Source tab. After the XDP form gets redendered to either static XFA PDF or dynamic XFA PDF, the PDF metadata I added manually is lost. I was told there is a known defect with LiveCycle ES1 and it has been fixed in ES2. So, wondering whether ES 8.2 is ES1 or ES2?
    Thanks!
    lcfun

    Designer 8.x = ES
    Designer 9.x = ES2

  • AdvancedDataGrid compatability with LiveCycle Data Services

    Hi,
    I have a J2EE project which I have integrated with Flex3,
    using the setup provided by your samples.jar in the LiveCycle data
    services download - e.g. copied the data from web.xml,
    flex-config.xml etc.
    Every thing works fine until I put an AdvancedDataGrid
    element into a page. I get the error:
    Could not resolve <mx:AdvancedDataGrid> to a component
    implementation.
    I resolved this by copying over the datavisualization.swc
    into the libs folder of my app. However then I got the error:
    unable to load SWC datavisualization.swc
    I then copied over the jars provided by Flex3.0 into the
    WEB-INF/flex/jars section of my project, overwriting any old ones
    provided by LiveCycle Data services sample. I also updated
    flex-config.xml to provide a
    <locale><locale-element>en_US</locale-element></locale>
    element..
    Then, when trying to load the page i got: the following
    error:
    Exception java.lang.NoSuchMethodError
    flex2.compiler.CompilerSwcContext
    This is method exists in the old mxmlc.jar file that i
    overwrote with the one provided by Flex sdk 3.0 and it is called
    from the flex-webtier.jar provided by LiveCycle Data Services.
    Am I right in thinking I can't have an advanced data grid at
    the moment? Or do i need a different flex-webtier.jar?
    Thanks
    Matt

    Hi,
    Could you please file a bug on
    http://bugs.adobe.com/flex/
    in which you describe your configuration and your installer
    settings. Please attach your .log file as well, which can be found
    in [your Workspace]\.metadata\.log .
    Thanks,
    Catalin

  • Extracting Data from PDF forms in Reader created in Livecycle

    Hello
    We would like users who complete a PDF  document in Adobe Reader created in Livecycle to be able to export the  completed fields (and accompanying questions) to a MS Word document in a  format that appears similar to the PDF so it can be pasted in future  documents.
    Is there a simple step procedure that the users can follow
    Any assistance would be much appreciated

    Hi,
    I think, you had selected "3.x Datasource" as the type when you were replicating the Metadata from second client.
    If so, delete the datsource (in BIW) from the second client , and then replicate the datsource one more time.But this time , you need to select "As Datasource" option only.
    with rgds,
    Anil Kumar Sharma .P

  • Adding Metadata to PDF Form

    Hi, I'm trying to add some metadata to a pdf. I have the follow script in the form initialize event:
    if (form1.desc.nodes.namedItem("metadata") == null) then
    var oNode=xfa.form.createNode("text", "metadata")
    form1.desc.nodes.append(oNode)
    endif
    I receive the error message:
    Argument mismatch in property or function argument
    I also tried this code:
    if (form1.desc.nodes.namedItem("metadata") == null) then
    var oNode=xfa.form.createNode("text", "metadata")
    oNode.value = "Test Data"
    form1.desc.nodes.append(oNode)
    endif
    Which gave me this error:
    accessor "oNode.value" is unknown
    It appears that the oNode object is not being created.
    Any suggesting how I can add Metadata to the PDF?

    Hi,
    This is the code I use to place metadata into the pdf file. If you open
    the resulting pdf file using Notepad, the metadata is visible as readable
    text in the file. I'm not sure the same approach can be used to add
    metadata as viewed under Document Properties. We are not using it that
    way. Maybe by changing the node name?
    if ((EMAIL_SUBJECT1.rawValue != "")&&(EMAIL_SUBJECT1.rawValue != null))
            var vDesc=xfa.template.data.desc;
            var oNode1=xfa.template.createNode("text", "EMAIL_SUBJECT1");
            vDesc.nodes.append(oNode1);
    vDesc.nodes.namedItem("EMAIL_SUBJECT1").value=EMAIL_SUBJECT1.rawValue;
    Andrew Zwickl | Worldwide Information Systems |
    Eastman Kodak Company | 1669 Lake Ave | Rochester, NY 14652-4455 |
    VOX: 585-477-1402
    FAX: 585-588-4123
    EMail: [email protected]
    www.kodak.com
    From:
    SI_MSD7 <[email protected]>
    To:
    zwickl <[email protected]>
    Date:
    08/10/2012 06:18 PM
    Subject:
    Adding Metadata to PDF Form
    Re: Adding Metadata to PDF Form
    created by SI_MSD7 in LiveCycle Designer - View the full discussion
    Bruce / Zwicki - or anyone who can assit...
    How did you get this to work? I
    I'm looking for a way to add/inject values (keywords) into the form's
    meta-data by retrieving the info/values from user input.
    To test the above solution, I added the following script to the initialize
    event as referenced, but I'm not sure what is happening:
    if (form1.desc.nodes.namedItem("metadata") == null)
    var oNode=xfa.form.createNode("text", "metadata")
    form1.desc.nodes.append(oNode)
    1. Do I need a field on the page?
    2. What part of the above script affects the meta-data?
    Thanks!
    Replies to this message go to everyone subscribed to this thread, not
    directly to the person who posted the message. To post a reply, either
    reply to this email or visit the message page: [
    http://forums.adobe.com/message/4613534#4613534]
    To unsubscribe from this thread, please visit the message page at [
    http://forums.adobe.com/message/4613534#4613534]. In the Actions box on
    the right, click the Stop Email Notifications link.
    Start a new discussion in LiveCycle Designer by email or at Adobe Forums
    For more information about maintaining your forum email notifications
    please go to http://forums.adobe.com/message/2936746#2936746.

  • How to import XMP metadata in pdf

    Could you please explain me, how to import XMP metadata in pdf file through "Live Cycle ES"?

    Yes, with LiveCycle ES (almost) all services can be invoked from any of the available endpoints (watch folder, EJB, WebService, etc).
    In this case since the ImportXMP requires two input files (the PDF and the XMP) you will need to drop a directory containing both of your files into the watch folder (not the individual files). This is because several requests can be dropped into the watch folder at the same time and without the sub directories LiveCycle couldn't tell what XMP when with what PDF.
    A com.adobe.idp.Document - AKA: Document - object is one of the common object types used across all LiveCycle products. When you deal with PDFs and many other binary file objects they are stored a Document object. It is more important that you know this when using Workbench, web services or the Java API.
    You should have a look at the documentation at: http://livedocs.adobe.com/livecycle/8.2/programLC/programmer/help/001553.html

  • Who have successfully deploy livecycle workflow 7.2.1 bam  on weblogic?

    Hi all ,<br />   I have successfully install the livecycle workflow 7.2.1 on weblogic 8.1.5 ,but when I installed bam manually on weblogic following the weblogic_install_config_7_2.pdf , it made some errors on starting the server . The error information display like this:<br /><br /><ExecuteThread: '3' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-101216> <Servlet: "VCBootup" failed to preload on startup in Web application: "celequest".<br />javax.servlet.ServletException<br />     at weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java:985)<br />     at weblogic.servlet.internal.ServletStubImpl.createInstances(ServletStubImpl.java:949)<br />     at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:888)<br />     at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:3 430)<br />     at weblogic.servlet.internal.WebAppServletContext.preloadServlets(WebAppServletContext.java: 3387)<br />     at weblogic.servlet.internal.WebAppServletContext.preloadServlets(WebAppServletContext.java: 3373)<br />     at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java :3356)<br />     at weblogic.servlet.internal.WebAppServletContext.setStarted(WebAppServletContext.java:6208) <br />     at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:864)<br />     at weblogic.j2ee.J2EEApplicationContainer.start(J2EEApplicationContainer.java:2134)<br />     at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:2175)<br />     at weblogic.management.deploy.slave.SlaveDeployer$ComponentActivateTask.activateContainer(Sl aveDeployer.java:2520)<br />     at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.doCommit(SlaveDeployer.java:2 438)<br />     at weblogic.management.deploy.slave.SlaveDeployer$Task.commit(SlaveDeployer.java:2155)<br />     at weblogic.management.deploy.slave.SlaveDeployer$Task.checkAutoCommit(SlaveDeployer.java:22 54)<br />     at weblogic.management.deploy.slave.SlaveDeployer$Task.prepare(SlaveDeployer.java:2149)<br />     at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.prepare(SlaveDeployer.java:24 01)<br />     at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:883) <br />     at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDeployer.java:591)<br />     at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:500)<br />     at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25)<br />     at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)<br />     at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)<br />Caused by: java.lang.ExceptionInInitializerError<br />     at com.celequest.datasources.adapter.AdapterDDLManager.<clinit>(AdapterDDLManager.java:63)<b r />     at java.lang.Class.forName0(Native Method)<br />     at java.lang.Class.forName(Class.java:141)<br />     at com.celequest.system.VCSystem.class$(VCSystem.java:159)<br />     at com.celequest.system.VCSystem.<clinit>(VCSystem.java:163)<br />     at com.celequest.system.boot.generic.StartupServlet.init(StartupServlet.java:53)<br />     at com.celequest.system.boot.weblogic.WLStartupServlet.init(WLStartupServlet.java:44)<br />     at weblogic.servlet.internal.ServletStubImpl$ServletInitAction.run(ServletStubImpl.java:1094 )<br />     at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)<b r />     at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)<br />     at weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java:970)<br />     ... 22 more<br />Caused by: com.celequest.exception.VCRuntimeException: ÄÚ²¿´íÎó:¸´ÖÆDispayNameÖµ[ÒDZíÅ̶ÔÏó].<br />     at com.celequest.metadata.type.MetadataTypes.add(MetadataTypes.java:790)<br />     at com.celequest.metadata.type.MetadataTypes.<clinit>(MetadataTypes.java:771)<br /><br />  <br />       I have no idea what to do now ,any sugguestion from you will be appreciated !

    Theresia wrote:
    Has no one experiencing the same problem? I think the key word is Can't find bundle for base name hr_global, locale en_US. Any idea pls You have to remember you are installing a very old version and lots of people have moved on to newer versions that is why you are not getting many responses.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How to add metadata into XDP form

    Hi,
    I am new to LiveCycle Designer. Wondering if there is a way to add PDF metadata into XDP form?
    I tried adding it into the XML source under the <x:xmpmeta> section, but the rendered PDF output file lost the metadata I added in the XDP.
    <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 4.2.1-c041 52.337767, 2008/04/13-15:41:00        ">
       <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
          <rdf:Description xmlns:xmp="http://ns.adobe.com/xap/1.0/" rdf:about="">
             <xmp:ModifyDate>2009-09-14T15:44:32+05:30</xmp:ModifyDate>
             <xmp:CreateDate>2009-09-14T15:44:31+05:30</xmp:CreateDate>
             <xmp:MetadataDate>2010-12-08T19:42:13Z</xmp:MetadataDate>
             <xmp:CreatorTool>Adobe LiveCycle Designer ES 8.2</xmp:CreatorTool>
          </rdf:Description>
          <rdf:Description xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" rdf:about="">
             <xmpMM:DocumentID>uuid:129e34eb-49a8-43f4-a934-43f67f5d6891</xmpMM:DocumentID>
             <xmpMM:InstanceID>uuid:ee103292-b266-4bb8-b1d1-71d29fe339e2</xmpMM:InstanceID>
          </rdf:Description>
          <rdf:Description xmlns:dc="http://purl.org/dc/elements/1.1/" rdf:about="">
             <dc:format>application/pdf</dc:format>
          </rdf:Description>
          <rdf:Description xmlns:pdf="http://ns.adobe.com/pdf/1.3/" rdf:about="">
             <pdf:Producer>Adobe LiveCycle Designer ES 8.2</pdf:Producer>
          </rdf:Description>
          <rdf:Description xmlns:ABC="ABC (http://www.abc.com)" rdf:about="">
             <ABC:XYZ>&lt;?xml version="1.0" encoding="utf-8"?&gt;
    &lt; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.abc.net/API/3.0"&gt;
    </ABC:XYZ>
          </rdf:Description>
          <rdf:Description xmlns:desc="http://ns.adobe.com/xfa/promoted-desc/" rdf:about="">
             <desc:version rdf:parseType="Resource">
                <rdf:value>8.0.1291.1.339988.308172</rdf:value>
                <desc:ref>/template/subform[1]</desc:ref>
             </desc:version>
          </rdf:Description>
       </rdf:RDF>
    </x:xmpmeta>
    Appreciated!
    lcfun

    Ohh, I see.
    But I think you can do this in a workaround with PDF, like the following.
    1. Load a form in Designer
    2. Delete possibly existing metadata in the XML Source <desc> ... </desc>
    3. Add fragment with the scripting for the metadata changes
    4. Save as PDF
    5. Close the PDF
    6. Reopen the PDF
    7. Save as XDP

  • Bam server and metadata Language

    Hi,
    I installed Livecycle 8.2 with Bam server.
    I configure process management with Bam.
    When I log on dashboard or workbench, the language is in French, what I want.
    But for example the events in workbench or dimensions in dashboard are display in English.
    How can I have all the display in French ?
    I suppose it depends on the database.
    Thanks

    Hi "Help Please" (funny name),
    I think you relate to the Oracle ESB (in 11g mediator)? In that case the metadata server relates to the repository definitions and the Run-time server does what its name suggests. In a single node setup these can run in the same container. But in a HighAvailability setup there can only run one Metadataserver in a cluster at the same time. The Runtime server can have multiple instances. So these can run in a active-active configuration. The metadata server then should be in a seperate container that is configured active-passive. So that if the active one goes down opmn can bringup the passive one.
    Regards,
    Martien

  • Post processing capabilities in Adobe LiveCycle...

    Hi,
    My requirements are:
    1. To intermediately store output in an intermediate repository.
    2. To search the repository based on query to filter out output for packaging and dispatching.
    For example:
    I want to keep generated output of monthly banking statement and keep it in some repository. I will use a customer facing webapplication, where in user will key in his acount number, to retrieve his statement from respository based on the account number as primary key.
    Please suggest on the same.
    Thanks and regards,
    Mayank

    Considerations: Environment: ES2 with IBM Content Manager connector
                           Repository: IBM Content Manager
                           Web UI/Database: UI able to call a LiveCycle Processes with some inputs and able to contact DB if required.
    1. When generating a statement we have some specific meta data (ex: customer details, stmt month etc)
    2. Generated stmt can be store in to IBM CM using the provided services(Create Item), while storing store the meta data also which returns a unique PID for this document. Update this unique PID in data base with corresponding record if existed already if not create new(metadata+PID).
    3. when retrieving the statement invoke the provided services(Retrieve Item) with this PID as input to view stmt on web interface. from UI can fetch the PID with a query using login details and which month or any other details of the statement.
    If need database elimination in the process, can be search directly on IBM CM using provided services(Search Items) and input the metadata supplied on step 1, if data base used can fetch the record directly. Based on the requirement can be add/modified the steps.
    -Raghu.

  • How to extract pdf document metadata and first page as image

    Hi,
    I have an asp.net application that allows uploading pdf documents - ebooks.
    1) How can I extract book title, author and other metadata from uploaded pdf.
    2) How can I create a thumbnail image of first page of pdf book.
    3) What is the minimum adobe software that must be installed on server to support this 2 features?
    Any sample in c# would be very helpfull. 
    Thanx,
       Valter

    3) What is the minimum adobe software that must be installed on server to support this 2 features?
    You may look at the LiveCycle products.

  • IBM Content Manager metadata problem

    Hi Experts,
    I have a problem...
    I have a requirement to store TIF images on the IBM Content Manager. This is done via ArchiveLink and IBM Common Store. Not sure how though. I'm using 2 function modules to achieve this: ALINK_DOCUMENTS_CREATE_DIALOG and ARCHIV_CONNECTION_INSERT.
    This works fine and the images are store on Content Manager.
    However, the CM people are saying that the metadata is not stored for the images and the Archive doc ID is not sufficient.
    I need to know where and how this metadata is populated and how it is passed from SAP to IBM CM.
    Thanks for any input.

    Nick,
    I am getting the exact same error. I have tried installing Adobe Livecycle 8 on two separate machines and they both give the same problem. In viewing at the logs, it seems that the IBM CM jar files are not being recognized by the Adobe installation. For me, I get the following logs as well in addition to what you see.
    Caused by: java.lang.NoClassDefFoundError: com.ibm.mm.sdk.common.DKDDO
    at java.lang.J9VMInternals.verifyImpl(Native Method)
    at java.lang.J9VMInternals.verify(J9VMInternals.java:59)
    at java.lang.J9VMInternals.initialize(J9VMInternals.java:120)
    at com.adobe.livecycle.connectorforibmcm.dsc.crc.CRCServiceDelegate.testIBMCMConnection(CRCS erviceDelegate.java:58)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:615)
    at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)
    ... 70 more
    [4/20/09 19:34:56:339 CDT] 00
    The DKDDO class is in the jar files that are inside II4C installation folder. I think that the file "adobe-component-ext.properties" that they ask us to create to reference the IBM CM jars is not being picked up by the Adobe Connectors for IBM CM. Do you see the " java.lang.NoClassDefFoundError" in your logs? Any resolutions you had regarding this.
    I even tried to copy the ibm jars to various paths and copied the props files ad various different locations. I am under the impression that the documentation may not have been updated for this change.

  • Error when caching data locally using LiveCycle Data Services

    Hi all,
    I developing a mobile application support working offline. I using cache feature of LiveCycle Data Services.
    This is my datasevice ( it has associate to others dataservice ) and autoSaveCache = true and cacheID = "xxx":
    <destination id="expenseData">
              <properties>
                        <source>expense.ExpenseDataAssembler</source>
                        <scope>application</scope>
                        <item-class>expense.ExpenseData</item-class>
                        <metadata>
                                  <identity property="id" />
                  <one-to-many property="expenseItems" destination="expense-item" />
                        </metadata>
              </properties>
    </destination>
    when I run application in the first, it run nomarly but when I close and run it again , i get the errror message as below :
    Error: Object instance needs an mx_internal::referencedIds property inorder to be managed: Object
              at mx.data.utils::Managed$/getReferencedIds()[C:\depot\DataServices\branches\milestone\adepd s46_rc\frameworks\projects\data\src\mx\data\utils\Managed.as:292]
              at mx.data::DataStore/restoreAssociations()[C:\depot\DataServices\branches\milestone\adepds4 6_rc\frameworks\projects\data\src\mx\data\DataStore.as:5010]
    - The error message not showed when I remove line <one-to-many property="expenseItems" destination="expense-item" /> .
    Please help me if you know about this problem.
    Thanks so much.

    no body help me !!!

Maybe you are looking for

  • How to analyses what takes memory

    Hi, I have a library with several functions written in labview and compiled into shared dll. Library provides functions to be used in test cases for Production (init, write, read, change, deint, etc). In init function some files are created, connecti

  • Input = 0 in PBO and Field command in PAI

    People, I have the following situation: In a online program I want: - for a field A, in PBO set the value and disable the field (so, the user cannot change it) - in PAI, I have to get this value to perform some processing. The problem is: when I made

  • Using blob or clob from db as document

    I'm changing a working process to fetch an XDP document from a database rather than fetch from resources:// on the Adobe server. The DB2 database field containing the XDP is a clob data type. We were using blob. The services operations are: - Foundat

  • Apps password error ergent?

    You are running adrepctl.sh version 115.32 Cannot complete applications logon. You may have entered an invalid applications password, or there may have been a database connect error. starting Reports Server for DEV on port 7003. Cannot complete appli

  • Missing video tutorials, 3rd-party plugins

    All, I just purchased Logic Studio and the documentation states that there are video tutorials on the Demo Content DVD. Yet when trying either my iMac's DVD player, or my hardware DVD player the videos are nowhere to be found. Not, luckily, that I'm