Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "SCA/Components/SCA Samples"

< SCA
(Creating samples)
(Restaurant sample)
Line 23: Line 23:
  
 
== Restaurant sample ==
 
== Restaurant sample ==
 +
 +
This sample provides a simple SCA composite named Restaurant. This composite is a composition of five components:
 +
 +
* RestaurantServiceComponent shows the list of proposed menus and computes the bill for the chosen menu.
 +
* MenuServiceComponent provides the menus (price without taxes).
 +
* BillServiceComponent computes the price of a menu with the different taxes.
 +
* VATServiceComponent computes the VAT (Value Added Tax).
 +
* TipServiceComponent computes the tip.
 +
The test.Client exercises this interface by calling getMenus and getBill operations. This results in messages passing to the appropriate components in the composite across the local wires (java binding).
  
 
== Restaurant - RMI Service ==
 
== Restaurant - RMI Service ==

Revision as of 11:36, 26 May 2008

You can test the SCA Composite Designer and see some possibilities of SCA through the following samples.

This section provides a step-by-step description for creating and testing a sample project.

How to use samples

Register Tuscany for SCA samples

First, you have to install Apache Tuscany to be able to test the sample applications. See the first section on Installing Tuscany to test your SCA applications. You can download it on: (http://incubator.apache.org/tuscany/sca-java-releases.html)

Then, you have to register Tuscany for SCA samples:

  1. Select Window > Preferences....
  2. Select SOA Tools > SCA Tools.
  3. Set the Tuscany directory
  4. Click on the Ok button.Scaexamples4.png

Creating samples

Different samples are available to test the SCA Composite Designer, they are described in the following sections. The samples projects are automatically created :

  1. Select File > New > Sample....
  2. Select SCA > SCA Examples and click Next.Scaexamples2.png
  3. Select one of the examples and click Next.Scaexamples1.png
  4. Set the Project name.
  5. Click Finish. The project is created with the following structure (for the first sample):Scaexamples3.png

Restaurant sample

This sample provides a simple SCA composite named Restaurant. This composite is a composition of five components:

  • RestaurantServiceComponent shows the list of proposed menus and computes the bill for the chosen menu.
  • MenuServiceComponent provides the menus (price without taxes).
  • BillServiceComponent computes the price of a menu with the different taxes.
  • VATServiceComponent computes the VAT (Value Added Tax).
  • TipServiceComponent computes the tip.

The test.Client exercises this interface by calling getMenus and getBill operations. This results in messages passing to the appropriate components in the composite across the local wires (java binding).

Restaurant - RMI Service

Restaurant - RMI Reference

Restaurant - Script

Restaurant - Composite

Back to the top