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:06, 27 May 2009 by Slewis.eclipsesource.com (Talk | contribs) (New page: First, install ECF 3.0. See [http://www.eclipse.org/ecf/downloads.php ecf download]. Then, as with any OSGi service, you need to define your service interface. Here is a trivial 'hello'...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

First, install ECF 3.0. See ecf download.

Then, 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();
 
}

Back to the top