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

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