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

Getting Started with ECF's RFC119 Implementation

Revision as of 20:20, 27 May 2009 by Slewis.eclipsesource.com (Talk | contribs) (Service Interface)

Install ECF 3.0. See ecf download.

Service Interface

As with any OSGi service, you need to define your service interface. Here is a trivial 'hello' service interface:

package org.eclipse.ecf.examples.remoteservices.hello;
 
public interface IHello {
 
	public void hello();
 
}

This service is defined, along with a simple implementation, in this project in CVS:

cvs: :pserver:anonymous@dev.eclipse.org:/cvsroot/rt module: org.eclipse.ecf/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello

There is also a project set file for this project. Media:Hello.psf

Back to the top