Skip to main content

Notice: This Wiki is now read only and edits are no longer 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:13, 27 May 2009 by Unnamed Poltroon (Talk)

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:

pserver:anonymous@dev.eclipse.org:/cvsroot/rt

module: org.eclipse.ecf/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello

Back to the top