Outdated!


CDM Library Download Site

The most recent version of the CDM Library will always be available here.

CDM Library (without server)

SizeDateVersion / Changes
CDM Library 1.4.1 13.6M 2008-12-02cdmlib-1.4.1.zip
CDM Library 1.4.1 - sources 1.6M 2008-12-02cdmlib-1.4.1-sources.zip

CDM Community Server

SizeDateVersion / Changes
CDM Community Server 1.4.1 32.4M 2008-12-02cdmserver-1.4.1.war

The CDM Library project documentation can be found at http://wp5.e-taxonomy.eu/cdmlib/site/

System requirements

TBD.

Installation

CDM Library (without server)

  1. Unzip the zip file
  2. Add all .jar files from the lib folder as well as from the cdm folder to your classpath

CDM Community Server

  1. Download cdmserver.war
  2. Unpack the .war file
  3. Goto folder WEB-INF
  4. Open applicationContext.xml
  5. Change the datasource bean using your own datasource parameters.
    <bean id="dataSource"  lazy-init="true" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
        <property name="url" value="jdbc:mysql://192.168.2.10/yourDatabaseName"/>
        <property name="username" value="yourUsername"/>
        <property name="password" value="yourPassword"/>

    </bean>

If using another database then please be aware that testing only has been undertaken for MySQL and H2 databases. Anyway you may try another database by

  • changing the driverClassName property (see classString attributes in supported database types for class names)
  • changing the hibernate dialect in the hibernateProperties bean
      <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>

See hibernate documentation for other database dialects. Tested dialects are MySQL, PostgreSQL, H2.

  1. Save applicationContext.xml and pack the .war file again
  2. Install the .war to your local Apache Tomcat

Help

Please feel free to contact the EDIT help desk with any problems: editsupport |at| bgbm |dot| org

Attachments