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 "Getting the Hello Example Service"

Line 2: Line 2:
  
 
<br>
 
<br>
The following projects are located in the [http://git.eclipse.org/c/ecf/org.eclipse.ecf.git/tree/examples/bundles ecf git repository].  These hello example projects are underneath <ecf tree>/examples/bundles.
+
The following projects are located in the [http://git.eclipse.org/c/ecf/org.eclipse.ecf.git/tree/examples/bundles ecf git repository].  These hello example projects are underneath [http://git.eclipse.org/c/ecf/org.eclipse.ecf.git/tree/examples/bundles root/examples/bundles].
  
 
'''org.eclipse.ecf.examples.remoteservices.hello'''<br>
 
'''org.eclipse.ecf.examples.remoteservices.hello'''<br>
Line 13: Line 13:
 
'''org.eclipse.ecf.examples.remoteservices.hello.consumer.edef'''<br>
 
'''org.eclipse.ecf.examples.remoteservices.hello.consumer.edef'''<br>
  
Note that there is also an example of the use of the OSGi Remote Service Admin Endpoint Description Extender Format (EDEF...defined in chapter 122 section 8) in this bundle
+
For the org.eclipse.ecf.examples.remoteservices.hello.consumer.edef bundle see also the documentation about this new file-based discovery format in [[File-based_Discovery_with_the_Endpoint_Description_Extender_Format | Discovery with the Endpoint Description Extender Format]].
 
+
'''org.eclipse.ecf.examples.remoteservices.hello.consumer.edef'''<br>
+
 
+
For the EDEF support (new to RSA impl) see also the documentation about this new file-based discovery format in [[File-based_Discovery_with_the_Endpoint_Description_Extender_Format | Discovery with the Endpoint Description Extender Format]].
+
  
 
==IHello Example Service==
 
==IHello Example Service==
  
 
The IHello service interface is in the o.e.e.examples.remoteservices.hello bundle.  The hello.host is the service host, and the hello.consumer is the service consumer/client.  The o.e.e.e.r.hello.ds.host is a version of the host that uses [http://www.eclipse.org/resources/resource.php?id=378 declarative services], and o.e.e.e.r.hello.ds.consumer is a version of the consumer that also uses [http://www.eclipse.org/resources/resource.php?id=378 declarative services].
 
The IHello service interface is in the o.e.e.examples.remoteservices.hello bundle.  The hello.host is the service host, and the hello.consumer is the service consumer/client.  The o.e.e.e.r.hello.ds.host is a version of the host that uses [http://www.eclipse.org/resources/resource.php?id=378 declarative services], and o.e.e.e.r.hello.ds.consumer is a version of the consumer that also uses [http://www.eclipse.org/resources/resource.php?id=378 declarative services].

Revision as of 17:49, 8 March 2011

ECF has moved to using git for it's source code control. The top-level of the repository is here.


The following projects are located in the ecf git repository. These hello example projects are underneath root/examples/bundles.

org.eclipse.ecf.examples.remoteservices.hello
org.eclipse.ecf.examples.remoteservices.hello.host
org.eclipse.ecf.examples.remoteservices.hello.consumer
org.eclipse.ecf.examples.remoteservices.hello.ds.host
org.eclipse.ecf.examples.remoteservices.hello.ds.consumer
org.eclipse.ecf.examples.remoteservices.hello.host.rs
org.eclipse.ecf.examples.remoteservices.hello.consumer.rs
org.eclipse.ecf.examples.remoteservices.hello.consumer.edef

For the org.eclipse.ecf.examples.remoteservices.hello.consumer.edef bundle see also the documentation about this new file-based discovery format in Discovery with the Endpoint Description Extender Format.

IHello Example Service

The IHello service interface is in the o.e.e.examples.remoteservices.hello bundle. The hello.host is the service host, and the hello.consumer is the service consumer/client. The o.e.e.e.r.hello.ds.host is a version of the host that uses declarative services, and o.e.e.e.r.hello.ds.consumer is a version of the consumer that also uses declarative services.

Back to the top