Configure the IXIA TEXTML Server connection settings
The fourth task when you install a new IXIA CCMS Output Generator is to configure the outputgenerator.xml file and so define the connection settings for IXIA TEXTML Server.
To configure CCMS Output Generator connection settings:
-
Open the %OutputGenDir%/conf/outputgenerator.xml file.
<?xml version="1.0" encoding="UTF-8"?> <outputgenerator> <textml address="IP_ADDRESS_IS_NOT_USED_LEAVE_EMPTY" port="2500" forceupdate="false" version="4" secure="false"> <docbase>DOCBASE_NAME_IS_NOT_USED_LEAVE_EMPTY</docbase> <user domain="yourdomainname" name="outgen-username" password="password"/> <timeout>500000</timeout> </textml> </outputgenerator>
Note: If this is a first time install of the CCMS Output Generator, open the outputgenerator.xml.empty file and save it as outputgenerator.xml after you remove the .empty suffix. -
In the
<user>
element, enter the domain, username, and password used by the CCMS Output Generator to connect to the TEXTML Server.<user domain="ixiasoft" name="OutputGenerator" password="ixiasoft"/>
Note: Thename
attribute cannot be empty.Note: You can also encrypt the password using the encrypt utility in the %OutputGenDir%/bin directory. See Encrypt a password. -
Leave the other parameters in the file alone, unless you are using the branding
feature or SSL authentication. In such a case, you must specify take the following
actions:
-
In the
port
attribute, enter the TEXTML Server port.port="2500"
-
If you are using SSL security, specify the secure SSL port.
port="2551"
Note: To enable SSL, you may also need to install a CA certificate on the CCMS Output Generator server. See Installing and Configuring IXIA TEXTML Server for IXIA CCMS for more information. -
Leave the
forceupdate
andversion
values unchanged. -
If you are using SSL, set the
secure
parameter to"true"
. -
Leave the
timeout
value unchanged.Note: This value specifies the time limit for the CCMS Output Generator to connect to the TEXTML Server, in milliseconds. -
Review your changes to the outputgenerator.xml to make
sure they are correct.
<outputgenerator> <textml address="IP_ADDRESS_IS_NOT_USED_LEAVE_EMPTY" port="2500" forceupdate="false" version="4" secure="false"> <docbase>DOCBASE_NAME_IS_NOT_USED_LEAVE_EMPTY</docbase> <user domain="acme" name="outgen" password="outgenpass"/> <timeout>500000</timeout> </textml> </outputgenerator>
-
In the
- Save and close outputgenerator.xml.