LicenseServer Tag |
The root tag for License Server XML tags. The License Server tags set the License Server options used by BarTender.
<LicenseServer>...</LicenseServer>
The following child element tags are supported:
Tag |
Required/Optional |
Description |
---|---|---|
Optional |
Sets the address of the preferred Seagull License Server. |
|
Optional |
Sets the address of an alternate Seagull License Server. |
|
Optional |
Sets the connection port for the alternate Seagull License Server. |
|
Optional |
Sets the number of times that BarTender will attempt to connect to the alternate Seagull License Server. |
|
Optional |
Sets the maximum length of time that BarTender will attempt to connect to the alternate Seagull License Server. |
|
Optional |
Sets the port that will be used to connect to the server. |
|
Optional |
Sets the number of times that BarTender will attempt to connect to the Seagull License Server. |
|
Optional |
Sets the maximum length of time that BarTender will attempt to connect to the Seagull License Server. |
<LicenseServer> is an optional tag that is used with the <Print> and the <FormatSetup> commands.
This example demonstrates the <LicenseServer> tag contained within the <Print> command. The <LicenseServer> tag can also be contained within the <FormatSetup> command.
<?xml version="1.0" encoding="utf-8"?>
<XMLScript Version="2.0" Name="09232006_103601_Job1" ID="123">
<Command Name="Job1">
<Print>
<Format>Label1.btw</Format>
<LicenseServer>
<Address>MyServer</Address>
<Port>5160</Port>
<Timeout>15</Timeout>
<Retries>3</Retries>
<AlternateAddress>altpc</AlternateAddress>
<AlternatePort>5555</AlternatePort>
<AlternateTimeout>25</AlternateTimeout>
<AlternateRetries>3</AlternateRetries>
</LicenseServer>
</Print>
</Command>
</XMLScript>
BTXML Script version 2.0 (BarTender 9.0 and higher)
Related Topics