Skip to content

Commit caaaa66

Browse files
committed
Merge remote-tracking branch 'PublicGH/master'
2 parents f0850cd + 2bc7378 commit caaaa66

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
This repository contains samples to show different scenarios of how you might use the JCICSX API.
44
These will not work out of the box, as you will require valid CICS resources eg CICS Programs and Libraries for them to use.
5-
Each sample is contained within a web application which can be packaged as a WAR in a CICS bundle and deployed to CICS using the [CICS bundle Maven plugin](https://github.com/IBM/cics-bundle-maven) or the [CICS bundle Gradle plugin](https://github.com/IBM/cics-bundle-gradle). If you're just interested in the Java code, this can be found in *src/main/java*.
5+
Each sample is contained within a web application which can be packaged as a WAR in a CICS bundle and deployed to CICS using the [CICS bundle Maven plugin](https://github.com/IBM/cics-bundle-maven) or the [CICS bundle Gradle plugin](https://github.com/IBM/cics-bundle-gradle). If you're just interested in the Java code, this can be found in *src/main/java*.
6+
7+
Full documentation on Java development using the JCICSX API can be found in the [IBM Knowledge Center](https://www.ibm.com/support/knowledgecenter/SSGMCP_5.6.0/applications/developing/java/jcicsx-api.html).
68

79

810
## Prerequisites
@@ -13,23 +15,23 @@ Each sample is contained within a web application which can be packaged as a WAR
1315

1416

1517

16-
## append-char-container-sample
18+
## [append-char-container-sample](append-char-container-sample)
1719

1820
This sample shows how you can create a channel. It then creates a container in that channel, which can contain CHAR data. Additional CHAR data is then appended to the container, and it then gets the combined data from the channel as a string output.
1921

20-
## bit-link-program-sample
22+
## [bit-link-program-sample](bit-link-program-sample)
2123

2224
This sample walks through how to use the JCICSX API to perform a LINK to a CICS Program. During the LINK, it passes through a BIT container containing a temperature in Celcius, and then receives BIT data as the output from the CICS Program containing the temperature converted to Fahrenheit.
2325

24-
## char-link-program-sample
26+
## [char-link-program-sample](char-link-program-sample)
2527

2628
This sample takes a string and links to a COBOL program with a channel and input CHAR container. The COBOL program reverses the string and returns it to the Java program in an output CHAR container.
2729

28-
## cics-java-liberty-restapp
30+
## [cics-java-liberty-restapp](cics-java-liberty-restapp)
2931

3032
This sample mimics the existing JCICS [cics-java-liberty-restapp sample](https://github.com/cicsdev/cics-java-liberty-restapp/blob/master/src/Java/com/ibm/cicsdev/restapp/InfoResource.java), but is updated to use JCICSX instead of JCICS to show the similarities and differences. It creates a RESTful application that takes a string as an input and reverses it, and get the date and time from CICS.
3133

32-
## mockito-testing-containers-sample
34+
## [mockito-testing-containers-sample](mockito-testing-containers-sample)
3335

3436
This sample shows how to get data from BIT containers, and how to test the core logic of your application by using Mockito to mock the JCICSX calls.
3537

0 commit comments

Comments
 (0)