JBoss EAP 6.4 CICS Resource Adapter Configuration

Describes the steps required to install and configure the JBoss EAP 6.4 CICS resource adapter.
  1. Copy the mfcics-notx-jb_eap64.rar file, located by default in the %ProgramFiles(x86)%\Micro Focus\Enterprise Developer\javaee-ccl\javaee6\jboss64EAP directory, to the standalone\deployments directory of your JBoss installation.
  2. Add the following code as a first-level child to the <profile> element in the JBoss standalone.xml file, usually located in the standalone\configuration directory of your JBoss installation:
    <subsystem xmlns="urn:jboss:domain:resource-adapters:1.0">
       <resource-adapters>
          <resource-adapter>
             <archive>mfcics-notx-jb_eap64.rar</archive>
             <transaction-support>NoTransaction</transaction-support>
             <connection-definitions>
                <connection-definition 
                    class-name="com.microfocus.cics.connector.spi.MFECINoTxManagedConnectionFactory" 
                    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:1.1">) to read as follows:
    <archive-validation enabled="false" fail-on-error="true" fail-on-warn="false"/>