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
Comments
You can use the IM or the web install, but you have to check for the JRE/JDK path and adjust the paths above to match that. I think the JDK might be installed in a different folder in the IM/Web install. You should use the JDK that ships with the RTC client, as mentioned in the workshop.
Otherwise, I think other users have used the IM/Web install and were able to run the workshop.