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 Remote Service"

(New page: The hello example service is defined, along with a simple implementation, in the following projects in CVS cvs: ''':pserver:anonymous@dev.eclipse.org:/cvsroot/rt'''<br> modules: '''org.ec...)
 
(Fixing it for latest Git info.)
 
Line 1: Line 1:
The hello example service is defined, along with a simple implementation, in the following projects in CVS
+
As a result of ECF's transition to Git, this tutorial no longer works. Instead, to obtain the example service, you can use the EGit plugin by cloning the following repository:
  
cvs: ''':pserver:anonymous@dev.eclipse.org:/cvsroot/rt'''<br>
+
'''git://git.eclipse.org/gitroot/ecf/org.eclipse.ecf.git'''
modules: '''org.eclipse.ecf/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello''', '''org.eclipse.ecf/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.host.rs''', '''org.eclipse.ecf/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.consumer.rs'''
+
  
For convenience, here a [[Media:Hellors.psf|project set file]] for these projects. Save this project set file to your local disk, and then import into your workspace.
+
In there you can find the three needed projects:
 +
 
 +
org.eclipse.ecf.examples.remoteservices.hello<br>org.eclipse.ecf.examples.remoteservices.hello.host.rs<br>org.eclipse.ecf.examples.remoteservices.hello.consumer.rs
 +
 
 +
<br>
 +
 
 +
Unfortunately, as EGit [https://bugs.eclipse.org/bugs/show_bug.cgi?id=296082 does not yet support project set files], these steps have to be done manually.
 +
 
 +
From this point on, the tutorial is deprecated.
 +
 
 +
<br>
 +
 
 +
----
 +
 
 +
The hello example service is defined, along with a simple implementation, in the following projects in CVS
 +
 
 +
cvs: ''':pserver:anonymous@dev.eclipse.org:/cvsroot/rt'''<br> modules: '''org.eclipse.ecf/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello''', '''org.eclipse.ecf/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.host.rs''', '''org.eclipse.ecf/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.consumer.rs'''
 +
 
 +
For convenience, here a [[Media:Hellors.psf|project set file]] for these projects. Save this project set file to your local disk, and then import into your workspace.  
  
 
The IHello service interface above is contained in the o.e.e.e.remoteservices.hello bundle, along with a trivial implementation (in org.eclipse.ecf.examples.remoteservices.hello.impl.Hello).
 
The IHello service interface above is contained in the o.e.e.e.remoteservices.hello bundle, along with a trivial implementation (in org.eclipse.ecf.examples.remoteservices.hello.impl.Hello).

Latest revision as of 04:53, 18 July 2011

As a result of ECF's transition to Git, this tutorial no longer works. Instead, to obtain the example service, you can use the EGit plugin by cloning the following repository:

git://git.eclipse.org/gitroot/ecf/org.eclipse.ecf.git

In there you can find the three needed projects:

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


Unfortunately, as EGit does not yet support project set files, these steps have to be done manually.

From this point on, the tutorial is deprecated.



The hello example service is defined, along with a simple implementation, in the following projects in CVS

cvs: :pserver:anonymous@dev.eclipse.org:/cvsroot/rt
modules: org.eclipse.ecf/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello, org.eclipse.ecf/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.host.rs, org.eclipse.ecf/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.consumer.rs

For convenience, here a project set file for these projects. Save this project set file to your local disk, and then import into your workspace.

The IHello service interface above is contained in the o.e.e.e.remoteservices.hello bundle, along with a trivial implementation (in org.eclipse.ecf.examples.remoteservices.hello.impl.Hello).

Back to the top