@@ -51,9 +51,9 @@ To install the sample through Liberty configuration
5151If the sample is correctly deployed, you should see the following messages in the Liberty logs:
5252
5353```
54- A CWWKT0016I: Web application available (default_host): http://mvs.example.ibm.com/shop/
54+ A CWWKT0016I: Web application available (default_host): http://mvs.example.ibm.com:9080 /shop/
5555...
56- A CWWKT0016I: Web application available (default_host): http://mvs.example.ibm.com/stock/
56+ A CWWKT0016I: Web application available (default_host): http://mvs.example.ibm.com:9080 /stock/
5757```
5858
5959If you use CICS bundle deployment, you will also need to define a RACF profile for users to access the stock REST API.
@@ -70,7 +70,7 @@ To create new items in the store send a HTTP request to the stock API:
7070
7171``` http
7272POST /stock/api/items HTTP/1.1
73- Host: mvs.example.ibm.com
73+ Host: mvs.example.ibm.com:9080
7474Content-Type: application/json
7575Authentication: BASIC <base64 encoded username,password>
7676
@@ -99,7 +99,7 @@ More stock can be added to an item through the following request (in this case w
9999
100100``` http
101101PUT /stock/api/items/1
102- Host: mvs.example.ibm.com
102+ Host: mvs.example.ibm.com:9080
103103Content-Type: application/json
104104Authentication: BASIC <base64 encoded username,password>
105105
@@ -117,7 +117,7 @@ You can view the current state of an item by sending a GET request (in this case
117117
118118``` http
119119GET /stock/api/items/1
120- Host: mvs.example.ibm.com
120+ Host: mvs.example.ibm.com:9080
121121Accept: application/json
122122Authentication: BASIC <base64 encoded username,password>
123123```
@@ -141,7 +141,7 @@ All the projects with code are Eclipse projects. To import these projects:
141141
1421421 . In Eclipse select * File* > * Import* > * General/Existing Projects into Workspace*
1431432 . * Browse* to the ` projects ` directory.
144- 3 . Ensure all 4 projects are checked
144+ 3 . Ensure all 5 projects are checked
1451454 . * Finish* to import the source projects.
146146
147147Optionally, you can import the CICS bundle project by following the same steps, but with the ` etc ` directory.
0 commit comments