Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse Dstore server

I recently stumbled across Eclipse's Dstore server, couldn't understand what it really does from the articles on the net. Can someone please tell me what is the use of Dstore server? Also, is it possible to develop server side code which could be accessed from client machine through Dstore server, like web requests are served by servlets via App server?

like image 667
Gaurav Panwar Avatar asked Jan 28 '10 07:01

Gaurav Panwar


1 Answers

RSE DStore (Remote System Explorer DataStore) is one of the protocols supported by the Target Management project (the others being ssh or ftp).
Hence the use of a DStore server, to give access to remote file-system and remote processes.

New Connection

Introduced late 2006, you will find all the details and API in the RSE DStore Developer Guide:

The DataStore communications framework is used to provide remote access and tooling for the Remote System Explorer.
It is a:

  • communications layer,
  • in-memory data repository and
  • a pluggable tooling framework.

While Eclipse provides the ability for local tools to plug into the Eclipse workbench, DataStore provides the ability to integrate remote tools into the Remote System Explorer

Eclipse Architecture

like image 105
VonC Avatar answered Nov 11 '22 02:11

VonC