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 "Riena Getting started"

Line 3: Line 3:
 
== Getting Started ==
 
== Getting Started ==
 
Getting started contains documentation about how to use the various aspects of Riena.
 
Getting started contains documentation about how to use the various aspects of Riena.
 +
 +
=== Setup for writing apps based on Riena===
 +
To use The Riena downloaded milestone, you need to setup an Eclipse IDE together with a target environment. These steps should roughly describe the way how to do that.
 +
- get an Eclipse IDE (3.3 or higher)
 +
- create a directory for the target plugin environment (empty)
 +
- unzip in there the eclipse-equinox-SDK (ca. 5.9 MB) (3.3 or higher)
 +
- unzip in there the eclipse-RCP-SDK (ca 20 MB) (3.3 or higher)
 +
- copy in there from the orbit repository(anonymous@dev.eclipse.org/cvsroot/tools/org.eclipse.orbit) the javax.servlet plugin (v2.4)
 +
- copy in there from the orbit repository (same as above) the org.junit plugin version 3.8
 +
- point the target plugin environment to this newly created directory
 +
 +
that should resolve all dependencies....
 +
 +
Of course this is an quit early stage for putting apps on top of Riena.
 +
  
 
=== Remote Services ===
 
=== Remote Services ===

Revision as of 07:46, 26 February 2008

Riena Project > Getting Started

Getting Started

Getting started contains documentation about how to use the various aspects of Riena.

Setup for writing apps based on Riena

To use The Riena downloaded milestone, you need to setup an Eclipse IDE together with a target environment. These steps should roughly describe the way how to do that. - get an Eclipse IDE (3.3 or higher) - create a directory for the target plugin environment (empty) - unzip in there the eclipse-equinox-SDK (ca. 5.9 MB) (3.3 or higher) - unzip in there the eclipse-RCP-SDK (ca 20 MB) (3.3 or higher) - copy in there from the orbit repository(anonymous@dev.eclipse.org/cvsroot/tools/org.eclipse.orbit) the javax.servlet plugin (v2.4) - copy in there from the orbit repository (same as above) the org.junit plugin version 3.8 - point the target plugin environment to this newly created directory

that should resolve all dependencies....

Of course this is an quit early stage for putting apps on top of Riena.


Remote Services

Remote Services in Riena are based on OSGi Services. So this Getting Started shows how standard OSGi Services can be first published as webservice endpoints and then second how they can be consumed by a client.

Getting Started with Remote Service


Security

Security in Riena is JAAS based. That means you have Subject, Principal(s), LoginModule and Permissions. Just the standard Java objects from the JAAS packages. Riena adds the distribution aspect to it, so that a login on the client gets processed on the server. It also deals with make the current Subject (a container for Principals) avaiblable on client and in the server thread where remote service calls are processed.

Getting Started using Security (JAAS) based in Riena

ObjectTransaction

Object Transaction are a base technology to track changes in large object nets and minimize only changed properties between client and server after the initial load of the object net.

Back to the top