Using the Form Data Integration service

You can import and export data by using XFDF (Acrobat forms only) or XDP (XML forms only). For example, to import data into a form created in Designer, create a valid XDP XML data source. Consider the following example mortgage application form.

To import data values into this form, you must create an XDP XML data source that corresponds to the form. You cannot use an arbitrary XML data source to import data into a form with the Form Data Integration service. The difference between an arbitrary XML data source and an XDP data source is that an XDP data source conforms to the XML Forms Architecture (XFA). The following XML represents an XDP data source that corresponds to the example mortgage application form.

<?xml version="1.0" encoding="UTF-8" ?>  
<xfa:datasets xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/"> 
<xfa:data> 
<data> 
    <Layer> 
        <closeDate>1/26/2007</closeDate>  
        <lastName>Johnson</lastName>  
        <firstName>Jerry</firstName>  
        <mailingAddress>JJohnson@NoMailServer.com</mailingAddress>  
        <city>New York</city>  
        <zipCode>00501</zipCode>  
        <state>NY</state>  
        <dateBirth>26/08/1973</dateBirth>  
        <middleInitials>D</middleInitials>  
        <socialSecurityNumber>(555) 555-5555</socialSecurityNumber>  
        <phoneNumber>5555550000</phoneNumber>  
    </Layer> 
    <Mortgage> 
        <mortgageAmount>295000.00</mortgageAmount>  
        <monthlyMortgagePayment>1724.54</monthlyMortgagePayment>  
        <purchasePrice>300000</purchasePrice>  
        <downPayment>5000</downPayment>  
        <term>25</term>  
        <interestRate>5.00</interestRate>  
    </Mortgage> 
</data> 
</xfa:data> 
</xfa:datasets>

For information about developing processes that use this service, see Workbench Help. For information about developing client applications that programmatically interact with this service, see Programming with LiveCycle.

You can use the Applications and Services pages of Administration Console to configure default properties for this service. (See LiveCycle Administration Console Help.)

// Ethnio survey code removed