Adding New JTransit License Keys
There are currently six types of license keys used by JTransit: Runtime, Compiler/ITE/Developer, FrontLine, FrontLine Pro, FrontLine Enterprise, and RedLine. Each needs to be added to a different XML configuration file in the main "jtransit" (installation) directory.
To add a key, enter its information in the proper JTransit configuration XML file (as listed below) nested beneath the main config element, all on one line so as to accomodate the XML syntax. You can add as many keys to a single XML file as you wish. The license "counts" in all keys will be added together. For example, if you have two runtime license keys, each for one CPU, you can add them both to the same jtransit.xml file and use that configuration on a 2-CPU machine. The upgrade expiration date will be the most futuristic date of all the keys.
Adding a Runtime License Key
Runtime keys are added to the main JTransit Runtime configuration file, usually called jtransit.xml in the main jtransit directory (usually C:\jtransit on Windows). For example:
<jtransit:config default-webroot=".">
<license key="5-1234-5678-9abc" />
...
Adding a Compiler, ITE, or Developer License Key
Developer keys are added to both the main JTransit Runtime configuration file (see Adding a Runtime License Key, above) as well as to the ite.xml file. For example:
<jtransit:ide-config>
<license key="5-1234-5678-9abc" />
...
Adding FrontLine License Keys
All FrontLine keys get addded to the JTransit FrontLine configuration file, usually called frontline.xml, in the main "jtransit" directory. However, they do NOT get added under the main config node as with other license key types, but instead, get added to the jtransit:config child node. For example:
<jtransit:frontline-config admin-email=...>
...
<jtransit:config default-webroot=".">
<license key="5-1234-5678-9abc" />
...
Adding a RedLine License Key
RedLine uses the same configuration file as the JTransit Runtime, so all RedLine license keys should be added to the same file (usually jtransit.xml; see Adding a Runtime License Key above). For example:
<jtransit:config default-webroot=".">
<license key="5-1234-5678-9abc" />
<license key="5-1234-5678-9abc" />
...
|