This repository has been archived by the owner on Nov 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 66
ODBC Servers
David Cassel edited this page Jun 23, 2015
·
1 revision
The Roxy Deployer allows you to create ODBC servers. The simplest way to do so is to uncomment the "odbc-port" property in build.properties. That will trigger Roxy to include the following snippet in ml-config.xml:
<odbc-server>
<odbc-server-name>@ml.app-name-odbc</odbc-server-name>
<port>@ml.odbc-port</port>
<database name="@ml.content-db"/>
<modules name="@ml.modules-db"/>
<authentication>digest</authentication>
</odbc-server>
The variables will be substituted for as usual. You can also include that snippet yourself directly into ml-config.xml, but if you do so, use a property other than "odbc-port" to avoid the default behavior. You can call it anything you like. For instance, you could define this property in build.properties:
my-odbc-port-num=8123
And add this to your ml-config.xml:
<odbc-server>
<odbc-server-name>@ml.app-name-odbc</odbc-server-name>
<port>@ml.my-odbc-port-num</port>
<database name="@ml.content-db"/>
<modules name="@ml.modules-db"/>
<authentication>digest</authentication>
</odbc-server>