Failure launching server using JazzServer-06M6-Maximal.xml
I am trying to launch the Jazz Server from the workspace. After downloading the launch config, setting the target platform, configuring JDK 1.6 and performing the steps to get around the org.apache.commons.logging versioning issue, I get the following error on Eclipse Console:
The java class is not found: M6\client\eclipse.......server.repositoryDB
Never seen this issue before with M5a or any earlier versions. Any help appreciated.
Thanks
Vivek
The java class is not found: M6\client\eclipse.......server.repositoryDB
Never seen this issue before with M5a or any earlier versions. Any help appreciated.
Thanks
Vivek
2 answers
vivekgg wrote:
I've seen this before when something in the arguments of the launch has
a space causing one argument value to get broken up when it should stay
together. I think what happened is that for this argument:
-Dcom.ibm.team.repository.db.jdbc.location=${target_home}/../../server/repositoryDB
The ${target_home} value expands to a path with a space (right before
"M6"). I think you can fix this wrapping the path in quotes like this:
-Dcom.ibm.team.repository.db.jdbc.location="${target_home}/../../server/repositoryDB"
--
Chris Daly
Jazz Component Development Team
I am trying to launch the Jazz Server from the workspace. After
downloading the launch config, setting the target platform,
configuring JDK 1.6 and performing the steps to get around the
org.apache.commons.logging versioning issue, I get the following
error on Eclipse Console:
The java class is not found:
M6\client\eclipse.......server.repositoryDB
Never seen this issue before with M5a or any earlier versions. Any
help appreciated.
Thanks
Vivek
I've seen this before when something in the arguments of the launch has
a space causing one argument value to get broken up when it should stay
together. I think what happened is that for this argument:
-Dcom.ibm.team.repository.db.jdbc.location=${target_home}/../../server/repositoryDB
The ${target_home} value expands to a path with a space (right before
"M6"). I think you can fix this wrapping the path in quotes like this:
-Dcom.ibm.team.repository.db.jdbc.location="${target_home}/../../server/repositoryDB"
--
Chris Daly
Jazz Component Development Team