You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-8Lines changed: 7 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ We have chosen to separate each component of the application into distinct CICS
34
34
35
35
## Prerequisites
36
36
* CICS TS for z/OS 5.1 or above
37
-
* Java SE 7.1 or above
37
+
*IBM SDK for Java SE 7.1 or above
38
38
39
39
## Supporting Files
40
40
*[com.ibm.cicsdev.osgi.ds.cicsapp_1.0.0](projects/com.ibm.cicsdev.osgi.ds.cicsapp_1.0.0) - OSGi bundle project containing the CICS application entry point
@@ -47,22 +47,21 @@ We have chosen to separate each component of the application into distinct CICS
47
47
*[com.ibm.cicsdev.osgi.ds.storage.impl.bundle_1.1.0](projects/com.ibm.cicsdev.osgi.ds.storage.impl.bundle_1.1.0) - CICS bundle for the TSQ implementation
48
48
49
49
## Usage
50
-
1. Clone or download this repository onto a local workstation
51
-
2. Import the projects into CICS Explorer
52
-
3. Deploy all the CICS bundle projects to zFS
50
+
1. Clone or download this repository onto a local workstation.
51
+
2. Import the projects into CICS Explorer.
52
+
3. Deploy all the CICS bundle projects to zFS.
53
53
4. Create an OSGi JVM server with the name `DFHOSGI`.
54
54
5. Create CICS bundle definitions for these OSGi bundle projects. [Table 1](#table-1) shows the mapping of bundle to bundle name used.
55
55
6. Install the CICS bundle definitions: `DS `, `DS-APP ` and `DS-IMP10`.
56
-
7. Run the transaction `DSTS PUT INMEM`, this should display the message `Created entry 1`
57
-
8. Run the transaction `DSTS GET 1`, this should display the message `INMEM`, which confirms the data was stored correctly in-memory
56
+
7. Run the transaction `DSTS PUT INMEM`, this should display the message `Created entry 1`.
57
+
8. Run the transaction `DSTS GET 1`, this should display the message `INMEM`, which confirms the data was stored correctly in-memory.
58
58
9. Install the CICS bundle `DS-IMP11`.
59
59
10. Disable the CICS bundle `DS-IMP10`.
60
60
11. Run the transaction `DSTS GET 1`, this should abend because the entry was not found in the TSQ.
61
-
12. Run the transaction `DSTS PUT TSQ`, this should display the message `Created entry 1`
61
+
12. Run the transaction `DSTS PUT TSQ`, this should display the message `Created entry 1`.
62
62
13. Run the transaction `DSTS GET 1`, this should display the message `TSQ`, which confirms the data was stored correctly in the TSQ (confirm by browsing on the TSQ `TSQS`, using the `CEBR` transaction for example).
63
63
14. The standard out (STDOUT) file for the JVM server should display messages that indicate the in-memory service (version 1.0.0) was first bound. Then later the service will be unbound when the OSGi bundle is disabled. You should also see that the TSQ service (1.1.0) is bound in it's place.
0 commit comments