Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "ECF Remote Services"

Line 1: Line 1:
Scott has been fooling around with designing a remote OSGI services API.
+
Scott has been fooling around with designing a remote services API, similar to but not the same as the OSGI services API.
  
 
+
See the newly checked in (8//4/2006) org.eclipse.ecf.remoteservice plugin, provider implementation and test code.  See below for project set with the API, provider, and test plugins, or see [http://www.eclipse.org/ecf/resources.html ecf dev resources].
Below are some ideas for an IRemoteServiceContainer...an ECF container adapter interface for registering, finding, and using remote services.
+
 
+
See also the newly checked in (8//4/2006) org.eclipse.ecf.remoteservice plugin, provider implementation and test code.  See below for project set with the API, provider, and test plugins, or see [http://www.eclipse.org/ecf/resources.html ecf dev resources].
+
  
 
See also the appropriate project set below.
 
See also the appropriate project set below.

Revision as of 12:00, 4 August 2006

Scott has been fooling around with designing a remote services API, similar to but not the same as the OSGI services API.

See the newly checked in (8//4/2006) org.eclipse.ecf.remoteservice plugin, provider implementation and test code. See below for project set with the API, provider, and test plugins, or see ecf dev resources.

See also the appropriate project set below.

Project set file for ECF committers:

<?xml version="1.0" encoding="UTF-8"?>
<psf version="2.0">
	<provider id="org.eclipse.team.cvs.core.cvsnature">
		<project reference="1.0,:extssh:dev.eclipse.org:/home/technology,org.eclipse.ecf/plugins/org.eclipse.ecf.provider.remoteservice,org.eclipse.ecf.provider.remoteservice"/>
		<project reference="1.0,:extssh:dev.eclipse.org:/home/technology,org.eclipse.ecf/plugins/org.eclipse.ecf.remoteservice,org.eclipse.ecf.remoteservice"/>
		<project reference="1.0,:extssh:dev.eclipse.org:/home/technology,org.eclipse.ecf/tests/org.eclipse.ecf.test.remoteservice,org.eclipse.ecf.test.remoteservice"/>
	</provider>
</psf>

Project set file for anonymous CVS access

<?xml version="1.0" encoding="UTF-8"?>
<psf version="2.0">
	<provider id="org.eclipse.team.cvs.core.cvsnature">
		<project reference="1.0,:pserver:dev.eclipse.org:/home/technology,org.eclipse.ecf/plugins/org.eclipse.ecf.provider.remoteservice,org.eclipse.ecf.provider.remoteservice"/>
		<project reference="1.0,:pserver:dev.eclipse.org:/home/technology,org.eclipse.ecf/plugins/org.eclipse.ecf.remoteservice,org.eclipse.ecf.remoteservice"/>
		<project reference="1.0,:pserver:dev.eclipse.org:/home/technology,org.eclipse.ecf/tests/org.eclipse.ecf.test.remoteservice,org.eclipse.ecf.test.remoteservice"/>
	</provider>
</psf>

Back to the top