Skip to content

Commit 2c7eab6

Browse files
authored
Update service URL paths
1 parent 6e9cae8 commit 2c7eab6

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -138,10 +138,10 @@ This creates a WAR file inside the `target` directory.
138138

139139
The example application is divided into four services which perform actions on a CICS temporary storage queuue (TSQ). Each with their own REST service suffix as follows:
140140

141-
- *TSQInfos* - query information about the TSQ
142-
- *writeTSQs* - write information to a TSQ
143-
- *browseTSQs* - read items from the TSQ
144-
- *deleteTSQs* - delete the TSQ
141+
- *info* - query information about the TSQ
142+
- *write* - write information to a TSQ
143+
- *browse* - read items from the TSQ
144+
- *delete* - delete the TSQ
145145

146146

147147

@@ -150,18 +150,18 @@ The example application is divided into four services which perform actions on a
150150
- `I SRVE0292I: Servlet Message - [com.ibm.cicsdev.springboot.jcics-0.1.0]:.Initializing Spring embedded WebApplicationContext`
151151

152152
2. Copy the context root from message CWWKT0016I along with the REST service suffix into you web browser. For example to write the string `ILOVECICS` to a TSQ called SPGJCICS:
153-
- `http://myzos.mycompany.com:httpPort/cics-java-liberty-springboot-jcics-0.1.0/writeTSQs?tsqName=SPGJCICS&tsqContent=ILOVECICS`
153+
- `http://myzos.mycompany.com:httpPort/cics-java-liberty-springboot-jcics-0.1.0/write?tsq=SPGJCICS&item=ILOVECICS`
154154

155155
3. Check if the specified TSQ has the information you expected by either:
156156
- Executing the CICS command `CEBR SPGJCICS` on a 3270 terminal. For this example, you should see `ILOVECICS` in TSQ SPGJCICS, or
157157
- Using the browse TSQ service URL for example to check the content of TSQ SPGJCICS
158-
- `http://myzos.mycompany.com:httpPort/cics-java-liberty-springboot-jcics-0.1.0/browseTSQs?tsqName=SPGJCICS`
158+
- `http://myzos.mycompany.com:httpPort/cics-java-liberty-springboot-jcics-0.1.0/browse?tsq=SPGJCICS`
159159

160160
4. If you use the TSQ info service you will see the basic information for TSQ SPGJCICS
161-
- `http://myzos.mycompany.com:httpPort/cics-java-liberty-springboot-jcics-0.1.0/TSQInfos?tsqName=SPGJCICS`
161+
- `http://myzos.mycompany.com:httpPort/cics-java-liberty-springboot-jcics-0.1.0/info?tsq=SPGJCICS`
162162

163-
5. If you want to delete this TSQ, you can use the deleteTSQs service for example
164-
- `http://myzos.mycompany.com:httpPort/cics-java-liberty-springboot-jcics-0.1.0/deleteTSQs?tsqName=SPGJCICS`
163+
5. If you want to delete this TSQ, you can use the delete service for example
164+
- `http://myzos.mycompany.com:httpPort/cics-java-liberty-springboot-jcics-0.1.0/delete?tsq=SPGJCICS`
165165

166166

167167
## License

0 commit comments

Comments
 (0)