If your CHA server is running on WebSphere(R) Application Server, you can initialize the CHA server using the startup servlets that the Branch Transformation Toolkit provides; or if your CHA server is running on WebSphere Business Integration Server Foundation, you can initialize it using either the startup servlets or the startup beans.
See CHA startup beans for details about initializing the CHA server with the startup beans.
In the dse.ini file, the initTailContextName setting identifies the leaf context in the initial context tree. The initial context tree is always linear in structure. The definition for the context is in the context definition file as show in the following example:
dse.ini
<?xml version="1.0"?> <dse.ini> <kColl id="settings"> <kColl id="cha-server"> ...... <field id="initTailContextName" value="sessionCtx"/> </kColl> </kColl> </dse.ini>
dsectxt.xml
<context id="branchServer" type="branch" parent="nil"> <refKColl refId="branchServerData"/> </context> <context id="sessionCtx" type="session" parent="branchServer"> <refKColl refId="sessionData"/> </context>
In this example, the branchServer context is chained to the sessionCtx and both are in the database after the CHA server starts.