Skip to content

Java™ EE 7 application that consumes CICS® TS events and issues emails, instant messages or writes to queues and files. Previously shipped as SupportPac CA1Y

License

Notifications You must be signed in to change notification settings

cicsdev/cics-event-consumer

Repository files navigation

cics-event-consumer

cics-event-consumer is a Java EE 7 web application that consumes events produced by CICS Transaction Server. Events are produced as a result of a CICS application event, a CICS system event, or a CICS policy event action. The application can also be called directly using the CICS LINK or START command.

cics-event-consumer can be called:

The received event, channel, or commarea can be formatted and:

The application was originally released as the IBM CA1Y: Send email from CICS Transaction Server for z/OS and referred to here as CA1Y for short.

Requirements

Installation

Building the Example

You can build the sample using an IDE of your choice, or the sample can be built using the supplied Maven build files to produce a WAR file and optionally a CICS Bundle archive.

Maven (command line)

First install the generated JAR file into the local Maven repository by running the following Maven command in a local command prompt

mvn org.apache.maven.plugins:maven-install-plugin:3.1.3:install-file -Dfile=cics-event-consumer-ca1y/WebContent/WEB-INF/lib/com.ibm.etools.marshall.runtime_6.1.200.v20120502_1750.jar -DgroupId=com.ibm.cicsdev -DartifactId=com.ibm.etools.marshall.jar -Dversion=1.0 -Dpackaging=jar -DlocalRepositoryPath=cics-event-consumer-ca1y/local-repo

Run the following in a local command prompt which will create a WAR file for deployment.

mvn clean verify

This creates a WAR file in the target directory.

If building a CICS bundle ZIP the CICS bundle plugin bundle goal is driven using the maven verify phase. The CICS JVM server name can be modified in the <cics.jvmserver> property in the pom.xml to match the required CICS JVMSERVER resource name, or alternatively can be set on the command line as follows.

mvn clean verify -Dcics.jvmserver=MYJVM

To start a JVM server in CICS:

  1. Enable Java support in the CICS region by setting the USSHOME and the JVMPROFILEDIR SIT parameters.

  2. Define a Liberty JVM server called DFHWLP using the CICS supplied sample definition DFHWLP in the CSD group DFH$WLP.

  3. Copy the CICS sample DFHWLP.jvmprofile zFS file to the CICS JVMPROFILEDIR directory and ensure the JAVA_HOME variable is set correctly.

  4. Add the following features to the Liberty server.xml depending on your version of Java EE.

    <feature>cicsts:link-1.0</feature>
    <feature>jaxrs-2.0</feature>
    <feature>jaxb-2.2</feature>
    <feature>javaMail-1.5</feature>
  5. Install the DFHWLP JVM server resource and ensure it becomes enabled.

To deploy the samples into a CICS region:

  1. Export the CICS bundle project to a zFS directory. The samples use the directory /u/ca1y/com.ibm.cics.ca1y.web.cicsbundle_1.8.1
  2. Using the supplied DFHCSDUP file create a CICS transaction CA1Y and a CICS BUNDLE definition referencing the zFS directory created in step 1
  3. Install the CICS BUNDLE and TRANSACTION resoures.
  4. Download and compile the supplied COBOL programs and deploy into CICS.

Alternatively you can export the cics-event-consumer-ca1y project as a WAR file and install it into the Liberty JVM server using the dropins directory, or add an application entry in server.xml as described in topic Deploying web applications directly to a Liberty JVM server.

Usage

See the documentation and the examples.

Motivation

This project was started in 2012 as to demonstrate how to write a CICS event adapter, and how the many APIs available in Java could be used to consume and process the events. Several customers raised the requirement to send an email from a CICS application asynchronously to the task, and the combination of event processing and the JavaMail API lead to the project being made available. As detailed in the CHANGELOG, the project evolved to meet new requirements - some motivated by customer need, and others to learn about Java, CICS, and JZOS APIs. It was moved to GitHub and the license changed to encourage community engagement.

License

This project is licensed under Apache License Version 2.0.

About

Java™ EE 7 application that consumes CICS® TS events and issues emails, instant messages or writes to queues and files. Previously shipped as SupportPac CA1Y

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages