Describes the steps required to install and configure a JBoss EAP CICS resource adapter.
- Copy the
mf-ibm-cics-notx-jboss-ver.rar file, located by default in the
%ProgramFiles(x86)%\Micro Focus\Enterprise Developer\javaee-ccl\javaee7\jboss-dir (Windows) or
$COBDIR/javaee-ccl/javaee7/jboss-dir
(UNIX)
directory, to the
standalone\deployments (Windows) or
standalone/deployments (UNIX) directory of your JBoss installation.
Note: jboss-ver represents the portion of the
.rar file name that corresponds to your JBoss version, and
jboss-dir represents the name of the directory that corresponds to your installed version of JBoss. For a list of supported JBoss versions,
see the
Java Application Servers section of the
Supported Operating Systems and Third-party Software topic.
- 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>mfcics-notx-jboss-ver.rar</archive>
<transaction-support>NoTransaction</transaction-support>
<connection-definitions>
<connection-definition
class-name="com.microfocus.cics.connector.spi.MFECINoTxManagedConnectionFactory"
jndi-name="java:/eis/MFCICS_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>
Where
jboss-ver represents the portion of the
.rar file name the corresponds to your JBoss version.
- In the
standalone.xml file, edit the
<archive-validation> element (child element of
<subsystem xmlns="urn:jboss:domain:jca:version-number">) to read as follows:
<archive-validation enabled="false" fail-on-error="true" fail-on-warn="false"/>