Configuring CICS TG inbound resource adapter on JBOSS
With CICS TG inbound resource adapter (cicsinbound.rar), a TXSeries application can invoke a method in an EJB application deployed on JBOSS within same logical unit of work. Here TXSeries acts as transaction co-ordinator and JBOSS as transaction participant.
- From JBOSS Management Console, click on Deployments, click
to upload deployment and choose cicsinbound.rar.

- Click Next and Finish to complete deployment.
- Configure Resource Adapter, from Configuration > Subsystems >Resource Adapters
- Add Resource Adapter, give Archive as cicsinbound.rar and Name as CTGInboundAdapter as displayed
here:
- Add Resource Adapter, give Archive as cicsinbound.rar and Name as CTGInboundAdapter as displayed
here:
- Deploy your JEE application that has a method to read Commarea sent by TXSeries similar to one
given here:
public void execute(InputStream input, OutputStream output) { customerRecord = new CustomerRecord(); try { customerRecord.read(input); System.out.println("Name :"+ customerRecord.getCustomerName()); System.out.println("BillAmount :" + customerRecord.getBillAmount()); } catch (IOException e1) { e1.printStackTrace(); } } - For TXSeries side configuration, to invoke the EJB application deployed on JBOSS see at:Configuring a TXSeries region to communicate with the CICS JEE inbound resource adapter.
- Execute transaction on TXSeries.