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 "EIG:Getting Started with OSGi Remote Services"

(Adding ECF 3.2 to Your Target Platform)
(Getting the Hello Example Code)
Line 7: Line 7:
 
You will also need Eclipse 3.6M5 in your target platform.  See [http://download.eclipse.org/eclipse/downloads/ here to download Eclipse 3.6M5 (or newer)].
 
You will also need Eclipse 3.6M5 in your target platform.  See [http://download.eclipse.org/eclipse/downloads/ here to download Eclipse 3.6M5 (or newer)].
  
==Getting the Hello Example Code==
+
==Getting the Example Code==
  
 
[[Getting the Hello Example Service | Click here for instructions on retrieving all the Hello Example source into your local workspace]]
 
[[Getting the Hello Example Service | Click here for instructions on retrieving all the Hello Example source into your local workspace]]

Revision as of 21:21, 26 January 2010

Adding ECF 3.2 to Your Target Platform

When ECF 3.2 is released (expected release date: Feb 19, 2010) it will be available on the ecf download page. Until the release, however, to work with ECF 3.2 you will need to get one of the recent daily builds of the ECF SDK (available here...see the C-HEAD-sdk_feature or the N-HEAD-sdk_feature), OR get the ECF source code and build/run from your local workspace.

Note that you only need the ECF SDK in your target platform.

You will also need Eclipse 3.6M5 in your target platform. See here to download Eclipse 3.6M5 (or newer).

Getting the Example Code

Click here for instructions on retrieving all the Hello Example source into your local workspace

Steps to Create the Hello Example

Below are the steps to define and build the Hello Example Remote Service.

Define a Service Interface

As with any OSGi service, you must first define your service interface. Here is a trivial example 'hello' service interface:

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

Back to the top