The <Address> tag sets the address of the computer that is running the preferred Seagull License Server. If the preferred server is not available, BarTender will use the server specified with the <AlternateAddress> tag. The address can be a server name (e.g., MyServer), a domain name (e.g., Shipping.MyCompany.com), an IP address (e.g., 10.1.1.68), or an asterisk, ("*").
Setting the <Address> tag to an asterisk will turn on Auto-Detect for both the preferred and alternate servers. Setting just the <AlternateAddress> tag to an asterisk will cause the system to search for a Seagull License Server named "*" if the preferred server cannot be found.
<Address> is an optional tag that can be used with the <Print> and the <FormatSetup> commands when the <LicenseServer> tag is included in the script.
<?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>