Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

Table of Contents
maxLevel3
minLevel3
styleborder:1
locationtop
typeflat
separatorpipe

...

Setup Database And The Database User

1. Download and install OpenEdge on you computer if it is not already done.

...

7. Now log out from the SQL explorer by typing "exit."

Setup Configuration Files

1. Edit the default database configuration defined in the  master-datasources.xml  file located at  $CARBON_HOME/repository/conf/datasources  directory as below. Both the database configurations in  registry.xml  and  user-mgt.xml  refer this data source.

...

Code Block
languagehtml/xml
<datasource>
     <name>WSO2_CARBON_DB</name>
     <description>The datasource used for registry and user manager</description>
     <jndiConfig>
           <name>jdbc/WSO2CarbonDB</name>
     </jndiConfig>
     <definition type="RDBMS">
           <configuration>
               <url>jdbc:datadirect:openedge://localhost:6767;databaseName=CARBON_DB</url>
               <username>regadmin</username>
               <password>regadmin</password>
               <driverClassName>com.ddtek.jdbc.openedge.OpenEdgeDriver</driverClassName>
               <maxActive>80</maxActive>
               <maxWait>60000</maxWait>
               <minIdle>5</minIdle>
               <testOnBorrow>true</testOnBorrow>
               <validationQuery>SELECT 1</validationQuery>
               <validationInterval>30000</validationInterval>
           </configuration>
     </definition>
</datasource>
The database configuration options.
  • url - The URL of the database.
  • username - The name of the database user.
  • password - The password of the database user.
  • driverName - The class name of the database driver.
  • maxActive - The maximum number of active connections that can be allocated from this pool at the same time or negative for no limit.
  • maxWait - The maximum number of milliseconds that the pool will wait (when there are no available connections) for a connection to be returned before throwing an exception or <= 0 to wait indefinitely.
  • minIdle - The minimum number of active connections that can remain idle in the pool, without extra ones being created, or 0 to create none.
Info
titleNote

Please note that we do not support running User Manager on OpenEdge in this release.

Setup Drivers

Copy the <OE-insallation-directory>/java/openedge.jar to the $CARBON_HOME/repository/components/lib directory. Here  $CARBON_HOME  refers to the directory where you run the WSO2 ESB BPS instance.

Create Database

Automatic Database Creation

1. Next at the first time you start the server, run with the -Dsetup option. It will create all the tables in a given OpenEdge database.

...

  • For Windows:

    Code Block
    wso2server.bat -Dsetup

2. WSO2 ESB BPS is configured to run with the OpenEdge database.

Manual Database Creation

1. For creating the tables manually, the OpenEdge script provided with the ESB BPS have to be modified.

Make a backup of the $CARBON_HOME/dbscripts/openedge.sql under the name of openedge_manual.sql.

...

  • For Linux:

    Code Block
    wso2server.sh
    
  • For Windows:

    Code Block
    wso2server.bat
    
Excerpt
hiddentrue

Instructions on how to set up WSO2 ESB BPS with OpenEdge database.