Skip to content

Commit 2efc95c

Browse files
committed
Fix mismatched servlet names
1 parent 7e81968 commit 2efc95c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

bit-link-program-sample/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# bit-link-program-sample
22

3-
Sample RESTful web application for deployment to a Liberty JVM server in CICS. `SampleServlet` takes an Integer temperature and uses the JCICSX API to link to the `CONVERT` COBOL program to convert it from Celcius to Fahrenheit. The link uses BIT containers for both the input and the output.
3+
Sample RESTful web application for deployment to a Liberty JVM server in CICS. `BitLinkServlet` takes an Integer temperature and uses the JCICSX API to link to the `CONVERT` COBOL program to convert it from Celcius to Fahrenheit. The link uses BIT containers for both the input and the output.
44

55

66
## Supporting files
@@ -39,7 +39,7 @@ You can then view the web server `http://yourcicsurl.com:9080/bit-link-program-s
3939

4040
* http://yourcicsurl.com:9080/bit-link-program-sample-0.0.1-SNAPSHOT/75
4141
where 75 can be any integer and represents a temperate in Celcius.
42-
This will invoke the `SampleServlet` class and return the following response with the temperature converted to Fahrenheit:
42+
This will invoke the `BitLinkServlet` class and return the following response with the temperature converted to Fahrenheit:
4343

4444
`Returned from link to 'CONVERT'. 75 degrees celcius = 167 degrees fahrenheit`
4545

bit-link-program-sample/src/main/webapp/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
<img class = "newappIcon" src='images/cics.png'>
1313
</td>
1414
<td>
15-
<!-- The message comes from /SampleServlet -->
15+
<!-- The message comes from /BitLinkServlet -->
1616
<h1 id = "message"></h1>
1717

1818
<p class='description'></p> Thanks for creating a <span class="blue">Liberty for Java Starter Application</span>.
1919
</td>
2020
</tr>
2121
</table>
22-
<!-- Call SampleServlet to get the message -->
22+
<!-- Call BitLinkServlet to get the message -->
2323
<script type="text/javascript" src="index.js"></script>
2424
</body>
2525
</html>

bit-link-program-sample/src/main/webapp/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// index.js
22

33
// request message on server
4-
//Calls SampleServlet to get the message
4+
//Calls BitLinkServlet to get the message
55
xhrGet("BitLinkServlet", function(responseText){
66
// add to document
77
var mytitle = document.getElementById('message');

0 commit comments

Comments
 (0)