Target Management project
RSE downloads

latest downloads from the dsdp-tm project
Download Information

On this page you can find the latest builds for the Remote System Explorer (RSE), provided by the Target Management project. To get started, see the build notes provided with each drop, run the program and go through the online user and developer documentation, or take a look at the project's online getting started pages. If you have problems downloading the drops, contact the webmaster. If you have problems installing or getting the workbench to run, check out the Target Management FAQ, or try posting a question to the newsgroup, eclipse.dsdp.tm. All downloads are provided under the terms and conditions of the Eclipse.org Software User Agreement unless otherwise specified.

Other eclipse.org project downloads are available here.
If you just want the latest drops (no dstore server), you can also get them from the TM 3.2 update site (latest release), or the TM 3.2.x milestone site (stable milestones).

For information about different kinds of builds look here. For access to archived builds, look here.

Latest Downloads
read()) { // Short cut because we know aDirectory only contains other directories. if ($anEntry != "." && $anEntry!="..") { $aDropDirectory = dir("drops/".$anEntry); $fileCount = 0; while ($aDropEntry = $aDropDirectory->read()) { if (stristr($aDropEntry, ".zip") || stristr($aDropEntry, ".tar")) { // Count the files in the directory $fileCount = $fileCount + 1; } } //See http://at2.php.net/manual/en/class.dir.php $aDropDirectory->close(); // Read the count file $countFile = "drops/".$anEntry."/package.count"; $indexFile = "drops/".$anEntry."/index.php"; if (file_exists($countFile) && file_exists($indexFile)) { $anArray = file($countFile); // If a match - process the directory if ($anArray[0] == $fileCount) { $parts = explode("-", $anEntry); if (count($parts) == 2) { //N-builds and I-builds $datePart = $parts[0]; $timePart = $parts[1]; $buildtype = substr($datePart, 0, 1); $buckets[$buildtype][] = $anEntry; $year = substr($datePart, 1, 4); $month = substr($datePart, 5, 2); $day = substr($datePart, 7, 2); $hour = substr($timePart,0,2); $minute = substr($timePart,2,2); $timeStamp = mktime($hour, $minute, 0, $month, $day, $year); $timeStamps[$anEntry] = date("D, j M Y -- H:i (O)", $timeStamp); if ($timeStamp > $latestTimeStamp[$buildtype]) { $latestTimeStamp[$buildtype] = $timeStamp; $latestFile[$buildtype] = $anEntry; } } else if (count($parts) == 3) { //S-builds and R-builds $buckets[$parts[0]][] = $anEntry; $timePart = $parts[2]; $year = substr($timePart, 0, 4); $month = substr($timePart, 4, 2); $day = substr($timePart, 6, 2); $hour = substr($timePart,8,2); $minute = substr($timePart,10,2); $timeStamp = mktime($hour, $minute, 0, $month, $day, $year); $timeStamps[$anEntry] = date("D, j M Y -- H:i (O)", $timeStamp); if ($timeStamp > $latestTimeStamp[$parts[0]]) { $latestTimeStamp[$parts[0]] = $timeStamp; $latestFile[$parts[0]] = $anEntry; } } } } } } $aDirectory->close(); ?>
"; $parts = explode("-", $fileName); if (count($parts) == 2) { $buildName=$fileName; } else { $buildName=$parts[1]; } // Uncomment the line below if we need click through licenses. // echo ""; // Comment the line below if we need click through licenses. echo ""; echo ""; echo ""; } ?>
Build Type Build Name Build Date
$value$buildName$buildName$timeStamps[$fileName]
  $value"; echo "s "; $aBucket = $buckets[$prefix]; if (isset($aBucket)) { rsort($aBucket); foreach($aBucket as $innerValue) { $parts = explode("-", $innerValue); if (count($parts) == 2) { $buildName=$innerValue; } else { $buildName=$parts[1]; } echo ""; // Uncomment the line below if we need click through licenses. // echo ""; // Comment the line below if we need click through licenses. echo ""; echo ""; } } echo "
Build Name Build Date
$buildName$buildName$timeStamps[$innerValue]
 "; } ?>