Describes the steps required to install and configure the JBoss 7.1 CICS IBM ECI resource adapter.
- Copy the
mf-ibm-cics-notx-jb71.rar file, located by default in the
%ProgramFiles(x86)%\Micro Focus\Enterprise Developer\bin (Windows) or
$COBDIR/etc
(UNIX) directory, to the
standalone\deployments directory of your JBoss installation.
- 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>mf-ibm-cics-notx.rar</archive>
<transaction-support>NoTransaction</transaction-support>
<connection-definitions>
<connection-definition
class-name="com.ibm.cics.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>
- 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"/>