Hi Guna, FYI a Site Wide license is one key that works anywhere.
But otherwise you need a separate license key for each domain/server combination. So if you have 1 server running 2 domain names, then you need 2 keys. If you have 2 servers (load balanced) running 1 domain name, you need 2 keys.
Let's say you have one WAR that you want to deploy to multiple servers under multiple domains, you can do that with one web.xml for all of them. To use more than one license key in one web.xml you do this
Code:
<init-param>
<param-name>licenseKey</param-name>
<param-value>12345</param-value>
</init-param>
<init-param>
<param-name>licenseKey2</param-name>
<param-value>12345</param-value>
</init-param>
<init-param>
<param-name>licenseKey3</param-name>
<param-value>12345</param-value>
</init-param>
As many as you need up to licenseKey6.
Hope this addresses your question?
Jim
-your feedback is helpful to other users, thank you!-your feedback is helpful to other users, thank you!