@@ -54,28 +54,28 @@ ECHO %ec% Fethcing json Jar [%jsonJar%].
54
54
IF NOT EXIST %jsonJar% (curl -o %jsonJar% https://repo1.maven.org/maven2/org/json/json/%jsonVer% /%jsonJar% ) ELSE (ECHO %fileExistsMsg% )
55
55
IF %ERRORLEVEL% GTR 1 (Error fethcing json Jar. & EXIT /B %ERRORLEVEL% ) ELSE (ECHO OK.)
56
56
57
- ECHO %ec% Making Java directory sructure for JmsPutGet Utility.
57
+ ECHO %ec% Making Java directory sructure for JmsPutGetInteractive Utility.
58
58
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.)
60
60
61
61
ECHO %ec% Changing to com/ibm/mq/samples/jms directory.
62
62
cd com\ibm\mq\samples\jms
63
63
IF %ERRORLEVEL% NEQ 0 (Error changing to com/ibm/mq/samples/jms directory. & EXIT /B %ERRORLEVEL% ) ELSE (ECHO OK.)
64
64
65
- ECHO %ec% Fethcing JmsPutGet Utility.
65
+ ECHO %ec% Fethcing JmsPutGetInteractive Utility.
66
66
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.)
68
68
69
69
ECHO %ec% Changing to MQClient directory.
70
70
cd ..\..\..\..\..
71
71
IF %ERRORLEVEL% NEQ 0 (ECHO Error changing to MQClient directory. & EXIT /B %ERRORLEVEL% ) ELSE (ECHO OK.)
72
72
73
- CALL :confirmNextStep " Compile JmsPutGet Utility?"
73
+ CALL :confirmNextStep " Compile JmsPutGetInteractive Utility?"
74
74
IF %ERRORLEVEL% GTR 0 (ECHO Exiting... & EXIT /B %ERRORLEVEL% ) ELSE (ECHO OK.)
75
75
76
- ECHO %ec% Compiling JmsPutGet Utility application source.
76
+ ECHO %ec% Compiling JmsPutGetInteractive Utility application source.
77
77
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.)
79
79
80
80
CALL :confirmNextStep " Run JMS Utility application?"
81
81
IF %ERRORLEVEL% GTR 0 (ECHO Exiting... & EXIT /B %ERRORLEVEL% ) ELSE (ECHO OK.)
@@ -112,7 +112,7 @@ IF %ERRORLEVEL% EQU 3 (SET mode= )
112
112
ECHO %ec% Running...
113
113
114
114
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.)
116
116
117
117
REM Complete, exit 0
118
118
ECHO %ec% Done!
0 commit comments