Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

CDO Objectivity Store ConfigFile

Revision as of 04:15, 7 July 2010 by Wingc.objectivity.com (Talk | contribs) (New page: The configuration file indicates which database to use. To use the Objectivity DB store, you need to setup your configuration like the following example: <code> <?xml version="1.0" enco...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The configuration file indicates which database to use. To use the Objectivity DB store, you need to setup your configuration like the following example:

 <?xml version="1.0" encoding="UTF-8"?>
 <cdoServer>
   <acceptor type="tcp" listenAddr="0.0.0.0" port="2036">
   </acceptor>
   <repository name="companyrepo">
   <property name="supportingAudits" value="true"/>
   <property name="supportingBranches" value="false"/>
     <store type="objectivity">
       <fdConfig
       name="Company"
       lockServerHost = "_DEFAULT_"
       fdDirPath = "c:\data\Company"
       fdFileHost = "_DEFAULT_"
       fdNumber = "5565"
       dbDirPath = "_DEFAULT_"
       pageSize = "_DEFAULT_">
       </fdConfig>
     </store>
   </repository>
 </cdoServer>

Back to the top