Deploying the IVP EAR file to WebSphere Liberty servers

Begin figure description. IMS TM Resource Adapter Version 13.2.0 or later. To deploy the IVP EAR file in WebSphere Liberty servers, edit the server.xml file.

Procedure

  1. Open the server.xml file.
  2. Add an <enterpriseApplication> entry as follows:
    <enterpriseApplication location="file_location" type="ear">
          <classloader classProviderRef="IMS_adapter_id" />
     </enterpriseApplication>
    IMS_adapter_id should be set to the value of resource adapter ID that you set in the <resourceAdapter> tag. For example, the server.xml might look as follows:
    <server description="myLibertyServer">
       <!-- Enable features -->
       <featureManager>
          <feature>jsp-2.2</feature>
          <!-- Added jca-1.6 and jndi-1.0 features required by the IMS 
               TM resource adapter -->
          <feature>jca-1.6</feature>
          <feature>jndi-1.0</feature>
       </featureManager>
       
        <resourceAdapter id="IMSTMRA" 
         location="C:\IBM\IMS\ico1410\IBM\IMS\ICO14\V1410\JCA15\imsico1410.rar" />
    
       <enterpriseApplication location="imsicoivp.ear" type="ear">
          <classloader classProviderRef="IMSTMRA" />
       </enterpriseApplication>

Results

You have deployed the EAR file for the IMS TM resource adapter IVP.

What to do next

You are ready to run the IMS TM resource adapter IVP.