Migrate definition file

The HTMLSample is taken as an example to illustrate the migration process.

  1. For the server side dse.ini file, some information needs to be changed. Add the following information:
    <kColl id="settings">
    ........
    ........
    <!--==================-->
    <!--WorkAreaDefintioin-->
    <!--==================-->
    <kColl id="WorkArea">
             <field id="usingWorkArea" value="true"/>
             <field id="location" value="iiop://localhost:2809/"/> 
             <field id="jndiName" value="java:comp/websphere/UserWorkArea"/>
    </kColl>
    <!--============================-->
    <!--For clustering consideration-->
    <!--============================-->
    <kColl id="EJB">
             <field id="InitialContextFactory" value="com.ibm.websphere.naming.WsnInitialContextFactory"/>
             <field id="location" value="iiop://localhost:2809/"/>
    </kColl>
    
    <kColl id="cha-server">
    <!--========================================-->
    <--      CHA Service Parameters             -->
    <!--========================================-->
    
    ........
    <field id="EJBProviderURL" value="iiop://localhost:2809"/><!--new line -->
    ........
  2. Some information is not necessary in BTT version 5.2. Remove the following information:
    <kColl id="settings">
    ..
     <kColl id="CHAFormatterServiceClient">
       <field id="CHAFormatterServiceProxyClass"
    value="com.ibm.btt.formatter.client.CHAFormatterServiceWSIFEjbProxy"/>
       <field id="WSIFEjbProxyWSDLPath"
    value="c:/com/ibm/btt/formatter/server/CHAFormatterServiceEJBService.wsdl"/>
     </kColl>
     ..
    </kColl>
       ..