can we do WorshopSetup in CLM 6.0.1 installed via IM or it works only on webinstaller?
Hello,
I have installed CLM 6.0.1 via IBM Installation Manager and in order to setup jetty I was going through one document and according to that During WorkshopSetup.jar installation I am, getting the error "Could not find or load the main class WorkshopSetup.jar"
According to the document the required directory was not generated when we download via IM.
So worksopSetup can only support when we install application via web installer?
If it works on application installed by IM what will be the possible resolution or any reference document?
I have installed CLM 6.0.1 via IBM Installation Manager and in order to setup jetty I was going through one document and according to that During WorkshopSetup.jar installation I am, getting the error "Could not find or load the main class WorkshopSetup.jar"
According to the document the required directory was not generated when we download via IM.
So worksopSetup can only support when we install application via web installer?
If it works on application installed by IM what will be the possible resolution or any reference document?
Accepted answer
Change the batch file to
set JAVA_HOME=..\TeamConcert\jazz\client\eclipse\jdk
set PLAIN_JAVA=../PlainJavaAPI
set REPOSITORY="https://localhost:9443/ccm"
set USERID="myadmin"
set PASSWORD="myadmin"
%JAVA_HOME%\jre\bin\java -Djava.ext.dirs=%PLAIN_JAVA%;%JAVA_HOME%/jre/lib/ext -cp %PLAIN_JAVA% -jar WorkshopSetup.jar %REPOSITORY% %USERID% %PASSWORD%
pause
Some Java versions did not work with the order of the parameters to java. This order is correct
set JAVA_HOME=..\TeamConcert\jazz\client\eclipse\jdk
set PLAIN_JAVA=../PlainJavaAPI
set REPOSITORY="https://localhost:9443/ccm"
set USERID="myadmin"
set PASSWORD="myadmin"
%JAVA_HOME%\jre\bin\java -Djava.ext.dirs=%PLAIN_JAVA%;%JAVA_HOME%/jre/lib/ext -cp %PLAIN_JAVA% -jar WorkshopSetup.jar %REPOSITORY% %USERID% %PASSWORD%
pause
Some Java versions did not work with the order of the parameters to java. This order is correct
2 other answers
set JAVA_HOME=..\TeamConcert\jdk
set PLAIN_JAVA=../PlainJavaAPI
set REPOSITORY="https://localhost:9443/ccm"
set USERID="bharatm"
set PASSWORD="bharatm"
%JAVA_HOME%\jre\bin\java -Djava.ext.dirs=%PLAIN_JAVA%;%JAVA_HOME%/jre/lib/ext -cp %PLAIN_JAVA% -jar WorkshopSetup.jar %REPOSITORY% %USERID% %PASSWORD%
pause
This is my batch file
I did CLM installation via Installation Manager is it the wrong method ? or doing installation via web installer or via IM doesn't affect the WorkshopSetup
set PLAIN_JAVA=../PlainJavaAPI
set REPOSITORY="https://localhost:9443/ccm"
set USERID="bharatm"
set PASSWORD="bharatm"
%JAVA_HOME%\jre\bin\java -Djava.ext.dirs=%PLAIN_JAVA%;%JAVA_HOME%/jre/lib/ext -cp %PLAIN_JAVA% -jar WorkshopSetup.jar %REPOSITORY% %USERID% %PASSWORD%
pause
This is my batch file
I did CLM installation via Installation Manager is it the wrong method ? or doing installation via web installer or via IM doesn't affect the WorkshopSetup