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:Runtime Dependencies/Configuration"

(ECF Discovery Provider Bundles)
(Other Bundles)
 
(31 intermediate revisions by 4 users not shown)
Line 1: Line 1:
== Installation of ECF ==
+
=== Other Bundles ===
 
+
The ECF 3.2 Remote Services implementation depends upon some bundles included in Eclipse 3.6, so you should download and use (at least) Eclipse 3.6M5 SDK. You can download Eclipse3.6M5 SDK here or a more recent version from the Eclipse 3.6 stream here.<br>
+
 
+
The ECF Remote Services bundles are included in the ECF SDK, which can be downloaded or installed via Marketplace or p2.
+
 
+
=== Installation via Marketplace ===
+
 
+
[...]
+
 
+
=== Installation via p2 ===
+
 
+
[...]
+
 
+
=== Adding ECF to the Target Platform ===
+
 
+
When developing with Eclipse 3.5 or newer, it's possible to use a concept called a target platform. The target platform specifies the set of bundles used to compile and build against within the Eclipse PDE (plugin development environment). The default target platform is Eclipse itself, but the target platform can be set to any desired set of bundles. One way to develop applications that use some or all of ECF is to add the ECF SDK to your target platform. Then you are able to develop against and build using ECF functionality.<br>
+
 
+
#Select from Menu:  '''Window->Preferences->Plug-in Development->Target Platform'''
+
#Choose '''Add...''' button
+
#Initialize the Target Definition with '''Default: Default target for the running platform'''
+
#Specify Name:  '''ECF 3.2 SDK'''
+
#Choose '''Add...''' button
+
#Select '''Software Site''' and '''Next>'''
+
#Choose '''Add...''' button
+
#In Add Repository dialog
+
##'''Name: ECF 3.2 SDK'''
+
##'''Location: http://www.eclipse.org/external/rt/ecf/3.2/3.6/site.p2'''
+
#Choose '''OK'''
+
#Open the ECF tree item
+
#Select the '''Eclipse Communication Framework SDK''' check box
+
#Unselect '''Include Required Software'''.  This option should '''not''' be selected.
+
#Choose '''Finish'''
+
#Select the target platform you just created (i.e. ECF 3.2 SDK)
+
#Choose '''OK'''
+
 
+
Your target platform should then be set to your current Eclipse, plus the ECF SDK.  Then you can refer to ECF classes in your own bundles/plugins.
+
 
+
== OSGi Remote Service Bundles ==
+
 
+
If the ECF SDK is installed into Eclipse, then the ECF Remote Services bundles are installed, but also a number of Eclipse views and perspectives are made available for use within Eclipse. If you only would like to use the bundles of the OSGi Remote Service implementation, take these:
+
 
+
=== ECF Bundles (OSGi Remote Service Implementation) ===
+
  
 
{|{{BMTableStyle}}
 
{|{{BMTableStyle}}
Line 47: Line 5:
 
! Bundle
 
! Bundle
 
! Description
 
! Description
|-
 
| org.eclipse.ecf
 
| ECF Core Bundle
 
|-
 
| org.eclipse.ecf.discovery
 
|
 
|-
 
| org.eclipse.ecf.identity
 
|
 
|-
 
| org.eclipse.ecf.osgi.services.discovery
 
| Implementation of the OSGi Discovery API.
 
|-
 
| org.eclipse.ecf.osgi.services.distribution
 
| Implementation of the OSGi Distribution API.
 
|-
 
| org.eclipse.ecf.osgi.services.remoteserviceadmin
 
| Implementation of the OSGi Remote Service and Remote Service Admin API.
 
|-
 
| org.eclipse.ecf.provider
 
|
 
|-
 
| org.eclipse.ecf.remoteservice
 
|
 
|-
 
| org.eclipse.ecf.sharedobject
 
|
 
|}
 
  
=== ECF Distribution Provider Bundles ===
 
 
In a common use case you should choose only one(!) of these providers.
 
 
{|{{BMTableStyle}}
 
|-{{BMTHStyle}}
 
! Bundle
 
! Description
 
|-
 
| org.eclipse.ecf.provider.remoteservice
 
| Generic provider ("ecf.generic.client" and "ecf.generic.server").
 
|-
 
| org.eclipse.ecf.provider.r_osgi
 
| R-OSGi Provider ("ecf.r_osgi.peer")
 
|}
 
 
=== ECF Discovery Provider Bundles ===
 
 
In a common use case you should choose only one(!) of these providers.
 
 
{|{{BMTableStyle}}
 
|-{{BMTHStyle}}
 
! Bundle
 
! Description
 
|-
 
| org.eclipse.ecf.provider.jmdns
 
| Zeroconf/Bonjour Provider
 
|-
 
| org.eclipse.ecf.provider.jslp
 
| SLP Provider
 
|-
 
| org.eclipse.ecf.provider.localdiscovery
 
|
 
|-
 
| org.eclipse.ecf.provider.zookeeper
 
| ZooDiscovery Provider
 
|}
 
 
=== Other Bundles ===
 
 
{|{{BMTableStyle}}
 
|-{{BMTHStyle}}
 
! Bundle
 
! Description
 
 
|-
 
|-
 
| ch.ethz.iks.r_osgi.remote
 
| ch.ethz.iks.r_osgi.remote
| Is only required when using org.eclipse.ecf.provider.r_osgi
+
| R-OSGi Implementation. Only required when using "org.eclipse.ecf.provider.r_osgi"
 
|-
 
|-
 
| ch.ethz.iks.slp
 
| ch.ethz.iks.slp
| Is only required when using org.eclipse.ecf.provider.jslp
+
| SLP Implementation. Only required when using "org.eclipse.ecf.provider.jslp"
 
|-
 
|-
 
| org.apache.zookeeper
 
| org.apache.zookeeper
| Is only required when using org.eclipse.ecf.provider.zookeeper
+
| [http://hadoop.apache.org/zookeeper/ Apache ZooKeeper] Implementation. Only required when using "org.eclipse.ecf.provider.zookeeper"
 
|-
 
|-
 
| org.objectweb.asm
 
| org.objectweb.asm
 
| Java bytecode manipulation and analysis framework.
 
| Java bytecode manipulation and analysis framework.
 +
|-
 +
| org.xbill.dns
 +
| Available from [http://download.eclipse.org/tools/orbit/downloads/ Orbit]. Only required when using "org.eclipse.ecf.provider.dnssd"
 +
|-
 +
| org.eclipse.ecf.provider.jgroups
 +
| Available from http://localhost:3282/jgroups
 +
"org.eclipse.ecf.provider.jgroups.manager"
 
|}
 
|}

Latest revision as of 15:43, 6 March 2011

Other Bundles

Bundle Description
ch.ethz.iks.r_osgi.remote R-OSGi Implementation. Only required when using "org.eclipse.ecf.provider.r_osgi"
ch.ethz.iks.slp SLP Implementation. Only required when using "org.eclipse.ecf.provider.jslp"
org.apache.zookeeper Apache ZooKeeper Implementation. Only required when using "org.eclipse.ecf.provider.zookeeper"
org.objectweb.asm Java bytecode manipulation and analysis framework.
org.xbill.dns Available from Orbit. Only required when using "org.eclipse.ecf.provider.dnssd"
org.eclipse.ecf.provider.jgroups Available from http://localhost:3282/jgroups

"org.eclipse.ecf.provider.jgroups.manager"

Back to the top