Skip to content

Commit ea7de65

Browse files
sophiegreenGitHub Enterprise
authored andcommitted
Update README.md
1 parent b671940 commit ea7de65

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

char-link-program-sample/README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,18 @@ This sample shows how you can use the JCICSX API to LINK to a CICS Program, pass
44

55
This web application takes the string "Hello from Java" and links to the EDUCHAN program with the channel `MYCHANNEL` and an input container called `INPUTDATA`. The EDUCHAN program reads the data from the input container and reverses the string. The output string is placed in the output container `OUTPUTDATA`, read in by the servlet and displayed on the web page.
66

7+
## Pre-reqs
8+
9+
* CICS TS V5.6 or later
10+
* Java SE 1.7 or later on the z/OS system
11+
* Java SE 1.7 or later on the workstation
12+
713
## Setup
814

915
This application links to the COBOL program EDUCHAN, which can be found in `src/main/cobol`.
1016
Download and compile the supplied COBOL program EDUCHAN and deploy into CICS.
1117

12-
This sample is a Maven project, which uses the [CICS Bundle Maven plugin](https://github.com/IBM/cics-bundle-maven) to package the web application in a CICS bundle and deploy this to CICS. This requires the CICS bundle deployment API to be enabled in CICS as a [prerequisite](https://www.ibm.com/support/knowledgecenter/en/SSGMCP_5.6.0/configuring/cmci/config-bundle-api.html). Alternatively, if you aren't using Maven, you could take the source from this project and use one of the other methods of deploying the application to CICS such as creating a CICS bundle project in CICS Explorer and adding the source as a dynamic web project include.
18+
This sample is a Maven project, which uses the [CICS Bundle Maven plugin](https://github.com/IBM/cics-bundle-maven) to package the web application in a CICS bundle and deploy this to CICS. This requires the CICS bundle deployment API to be enabled in CICS as a [prerequisite](https://www.ibm.com/support/knowledgecenter/en/SSGMCP_5.6.0/configuring/cmci/config-bundle-api.html). Alternatively, if you aren't using Maven, you can use [Gradle](https://github.com/IBM/cics-bundle-gradle) or you could take the source from this project and use one of the other methods of deploying the application to CICS such as creating a CICS bundle project in CICS Explorer and adding the source as a dynamic web project include.
1319

1420
To run the sample as-is, fill out values in the configuration block in pom.xml
1521
```xml
@@ -26,4 +32,4 @@ To run the sample as-is, fill out values in the configuration block in pom.xml
2632
```
2733
Running `mvn clean install` will package the web application into a CICS Bundle and install and enable it.
2834
You can then view the web server `http://yourcicsurl.com:9080/char-link-program-sample-0.0.1-SNAPSHOT/`
29-
You should see the message `Hello world! Returned from link to 'EDUCHAN' with a text response of ' avaJ morf olleH'`
35+
You should see the message `Hello world! Returned from link to 'EDUCHAN' with a text response of ' avaJ morf olleH'`

0 commit comments

Comments
 (0)