Skip to content

Commit d8b9ad6

Browse files
committed
Consistent naming JmsPutGetInteractive
1 parent d1370cd commit d8b9ad6

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

gettingStarted/workshop-scripts/runJmsPutGetInteractive.bat

+8-8
Original file line numberDiff line numberDiff line change
@@ -54,28 +54,28 @@ ECHO %ec% Fethcing json Jar [%jsonJar%].
5454
IF NOT EXIST %jsonJar% (curl -o %jsonJar% https://repo1.maven.org/maven2/org/json/json/%jsonVer%/%jsonJar%) ELSE (ECHO %fileExistsMsg%)
5555
IF %ERRORLEVEL% GTR 1 (Error fethcing json Jar. & EXIT /B %ERRORLEVEL%) ELSE (ECHO OK.)
5656

57-
ECHO %ec% Making Java directory sructure for JmsPutGet Utility.
57+
ECHO %ec% Making Java directory sructure for JmsPutGetInteractive Utility.
5858
IF NOT EXIST com\ibm\mq\samples\jms (md com\ibm\mq\samples\jms) ELSE (ECHO %fileExistsMsg%)
59-
IF %ERRORLEVEL% GTR 1 (Error making Java directory sructure for JmsPutGet Utility. & EXIT /B %ERRORLEVEL%) ELSE (ECHO OK.)
59+
IF %ERRORLEVEL% GTR 1 (Error making Java directory sructure for JmsPutGetInteractive Utility. & EXIT /B %ERRORLEVEL%) ELSE (ECHO OK.)
6060

6161
ECHO %ec% Changing to com/ibm/mq/samples/jms directory.
6262
cd com\ibm\mq\samples\jms
6363
IF %ERRORLEVEL% NEQ 0 (Error changing to com/ibm/mq/samples/jms directory. & EXIT /B %ERRORLEVEL%) ELSE (ECHO OK.)
6464

65-
ECHO %ec% Fethcing JmsPutGet Utility.
65+
ECHO %ec% Fethcing JmsPutGetInteractive Utility.
6666
IF NOT EXIST %jmsAppSrc% (curl -o %jmsAppSrc% https://raw.githubusercontent.com/ibm-messaging/mq-dev-samples/master/gettingStarted/jms/com/ibm/mq/samples/jms/%JmsAppSrc%) ELSE (ECHO %fileExistsMsg%)
67-
IF %ERRORLEVEL% GTR 1 (Error fetching JmsPutGet Utility. & EXIT /B %ERRORLEVEL%) ELSE (ECHO OK.)
67+
IF %ERRORLEVEL% GTR 1 (Error fetching JmsPutGetInteractive Utility. & EXIT /B %ERRORLEVEL%) ELSE (ECHO OK.)
6868

6969
ECHO %ec% Changing to MQClient directory.
7070
cd ..\..\..\..\..
7171
IF %ERRORLEVEL% NEQ 0 (ECHO Error changing to MQClient directory. & EXIT /B %ERRORLEVEL%) ELSE (ECHO OK.)
7272

73-
CALL :confirmNextStep "Compile JmsPutGet Utility?"
73+
CALL :confirmNextStep "Compile JmsPutGetInteractive Utility?"
7474
IF %ERRORLEVEL% GTR 0 (ECHO Exiting... & EXIT /B %ERRORLEVEL%) ELSE (ECHO OK.)
7575

76-
ECHO %ec% Compiling JmsPutGet Utility application source.
76+
ECHO %ec% Compiling JmsPutGetInteractive Utility application source.
7777
javac -cp .\%allClientJar%;.\%jmsApiJar%;.\%jsonJar%;. com\ibm\mq\samples\jms\%JmsAppSrc%
78-
IF %ERRORLEVEL% GTR 0 (ECHO Error compiling JmsPutGet Utility. & EXIT /B %ERRORLEVEL%) ELSE (ECHO OK.)
78+
IF %ERRORLEVEL% GTR 0 (ECHO Error compiling JmsPutGetInteractive Utility. & EXIT /B %ERRORLEVEL%) ELSE (ECHO OK.)
7979

8080
CALL :confirmNextStep "Run JMS Utility application?"
8181
IF %ERRORLEVEL% GTR 0 (ECHO Exiting... & EXIT /B %ERRORLEVEL%) ELSE (ECHO OK.)
@@ -112,7 +112,7 @@ IF %ERRORLEVEL% EQU 3 (SET mode= )
112112
ECHO %ec% Running...
113113

114114
java -cp .\%allClientJar%;.\%jmsApiJar%;.\%jsonJar%;. com.ibm.mq.samples.jms.%JmsAppClass% %host_name% %port% %channel% %qmgr% %app_user% %app_pwd% %queue% %mode% %TLS%
115-
IF %ERRORLEVEL% NEQ 0 (ECHO Error running JmsPutGet Utility.)
115+
IF %ERRORLEVEL% NEQ 0 (ECHO Error running JmsPutGetInteractive Utility.)
116116

117117
REM Complete, exit 0
118118
ECHO %ec% Done!

0 commit comments

Comments
 (0)