RTC development for CCM v4.0.5
Hello!
I have a question about development of features for CCM server. I have passed all labs in "Rational Team Concert 4.0 Extensions Workshop" in CLM 4.0.1 from here:
https://jazz.net/library/article/1000
Everything described perfect! I was successful in all labs.
But now I would like to use the same technics for real development in CLM 4.0.5. I setup all the environment in accordance to the similar information from workshop (both RTC Eclipse and JTS of v4.0.5). But only I have taken some libraries (including launch configurations) from the RTC Workshop. And I can not start debug configuration for verification of connecting to CCM server. Apperantly, the process i s started and occupies port 3388, but the Eclipse console view is empty. And nothing is really launched (and what is especially strange - without both any errors and successful records)!
Can somebody clarify what is wrong? I will appreciate for any recommendations!
Thank you in advance!
I have a question about development of features for CCM server. I have passed all labs in "Rational Team Concert 4.0 Extensions Workshop" in CLM 4.0.1 from here:
https://jazz.net/library/article/1000
Everything described perfect! I was successful in all labs.
But now I would like to use the same technics for real development in CLM 4.0.5. I setup all the environment in accordance to the similar information from workshop (both RTC Eclipse and JTS of v4.0.5). But only I have taken some libraries (including launch configurations) from the RTC Workshop. And I can not start debug configuration for verification of connecting to CCM server. Apperantly, the process i s started and occupies port 3388, but the Eclipse console view is empty. And nothing is really launched (and what is especially strange - without both any errors and successful records)!
Can somebody clarify what is wrong? I will appreciate for any recommendations!
Thank you in advance!
Accepted answer
the out of the box startup for product CCM does not configure the debug port at 3388.
I added this to a copy of the server.startup script (I call it server.startup.debug)
(note the comment shows you where in the current script this new lines should go)
# JAVA_OPTS="$JAVA_OPTS -Dcom.sun.management.jmxremote.authenticate=false"
JAVA_OPTS="$JAVA_OPTS -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=3388"
I added this to a copy of the server.startup script (I call it server.startup.debug)
(note the comment shows you where in the current script this new lines should go)
# JAVA_OPTS="$JAVA_OPTS -Dcom.sun.management.jmxremote.authenticate=false"
JAVA_OPTS="$JAVA_OPTS -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=3388"