This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Not able to launch CCS from DSS java code written in eclipse

Hello,


I have been developing java codes in Eclipse using Debug Server Scripting which flashes .out file into the target board, write to input symbols, read the output symbols. The tool works absolutely file except source code debugging. 

The difficulties I have is, how to attach a existing debug server instance (created in eclipse) to CCS for interactive debugging.

Moreover can I launch CCS when I debug through eclipse.  I uae below code lines to create a debug session.

script = ScriptingEnvironment.instance();

debugServer = (DebugServer) script.getServer("DebugServer.1");

debugServer.setConfig("D:\\Target Configuration\\NewTargetConfiguration.ccxml");

debugSession = debugServer.openSession(".*");

Also I want to develop this tool only in java language as DSS supports java.

Please help me out.