Eclipse Dstore Server

Recently I came across an Eclipse Dstore server, I could not understand what it really does from articles on the network. Can someone please tell me what is the use of the Dstore server? In addition, is it possible to develop server-side code that can be received from the client machine through the Dstore server, for example, web requests are served by servlets through the application server?

+6
eclipse java-ee
source share
1 answer

RSE DStore (Remote System Explorer DataStore) is one of the protocols supported by the target management project (other ssh or ftp ).
Consequently, using the DStore server to provide access to a remote file is system and remote processes .

New connection

Introduced at the end of 2006 , you will find all the details and APIs in the RSE DStore Developer's Guide :

The DataStore communication structure is used to provide remote access and tools for the Remote System Explorer.
It:

  • communication level
  • in-memory data storage and
  • plugin framework.

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

Eclipse architecture

+6
source share

All Articles