JBoss EAP 7.1 CICS IBM ECI Resource Adapter Configuration

Describes the steps required to install and configure the JBoss EAP 7.1 CICS IBM ECI resource adapter.
  1. Copy the mf-ibm-cics-notx-jb_eap71.rar file, located by default in the %ProgramFiles(x86)%\Micro Focus\Enterprise Developer\javaee-ccl\javaee7\jboss71EAP (Windows) or $COBDIR/javaee-ccl/javaee7/jboss71EAP (UNIX) directory, to the standalone\deployments (Windows) or standalone/deployments (UNIX) directory of your JBoss installation.
  2. In the JBoss standalone.xml file, usually located in the standalone\configuration (Windows) or standalone/configuration (UNIX) directory of your JBoss installation, replace the existing resource-adapters subsystem element with the following subsystem definition:
    <subsystem xmlns="urn:jboss:domain:resource-adapters:5.0">
       <resource-adapters>
          <resource-adapter>
             <archive>mf-ibm-cics-notx-jb_eap71.rar</archive>
             <transaction-support>NoTransaction</transaction-support>
             <connection-definitions>
                <connection-definition 
                    class-name="com.ibm.connector2.cics.ECIManagedConnectionFactory" 
                    jndi-name="java:/eis/MFCICS_IBM_v1.5" pool-name="MFECIConnectionFactory">
                  <pool>
                     <min-pool-size>2</min-pool-size>
                     <max-pool-size>10</max-pool-size>
                  </pool>
                  <security>
                     <application/>
                  </security>
                </connection-definition>
              </connection-definitions>
            </resource-adapter>
        </resource-adapters>
    </subsystem>
  3. In the standalone.xml file, edit the <archive-validation> element (child element of <subsystem xmlns="urn:jboss:domain:jca:5.0">) to read as follows:
    <archive-validation enabled="false" fail-on-error="true" fail-on-warn="false"/>