Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

Tuscany Samples

The Tuscany Samples samples are shipped with Tuscany binary and source releases. If you are using tuscany from a release distribution then To make sure that you are 're looking at the documentation that corresponds to the samples as they stood at the time of the release ...

[2.0-beta-Samples documentation|2.0-beta-Samples documentation]If however you are working with a snapshot distribution, or using samples code from the trunk of our source repository, then you've come to the right place, as the documentation here reflects the curtrent status of the samples in the trunk of our source tree.

In a distribution, the samples source code is found in either a binary or source code distribution in the samples directory, directly under the root directory. The following sections are laid out to match the structure of the samples directory and its subdirectories.

Table of Contents
minLevel2
outlinetrue

getting-started

The basic package of SCA application artifacts is a contribution which for this simple sample is found in contribution-helloworld.  There's also a  directory which contains all you need to make a web application archive which can be deployed to a web container such as Tomcat, so that the sayHello service can be run in the web container.

contribution-helloworld

This contribution contains Java implementation code offering the service String sayHello(String name), where the immplementation of the service

In this folder you'll find the simplest contribution, implemented in Java, that implements the "business logic" of saying hello to a person whose name is supplied as input to the service.

helloworld-webapp

Warning
titleTODO

It's not at all clear how this is supposed to work once it is in the web container - I have asked on the dev list

running-tuscany

Running something in Tuscany requires one or more contributions, and a method of launching the contributions to make them available as services. In the sections below is described various means of launching contributions into an executing  tuscany runtime.

launcher-command-line

To execute a sample contribution from the command line on Windows, from a command prompt in the samples directory, run the command ...

Code Block

..\bin\tuscany.bat "contribution-name"

for example

Code Block

..\bin\tuscany.bat contribution-binding-sca-calculator

or on *nix platforms, from a shell prompt in the samples directory, run the command ...

Code Block

../bin/tuscany.sh contribution-binding-sca-calculator

launcher-embedded-jse

This directory contains sample java launchers for the
tuscany sample contributions. To use the sample JSE launchers with ant execute the command

Code Block

ant run-<contributionname>

where run-<contributionname> is one of the targets in the build.xml file

To use this sample launcher to run all of the contributions as junit test cases, execute the command "mvn" in the launcher directory.

launcher-embedded-osgi

The launchers implemented in the src/main/java/launchers directory each launch a specific contribution into the OSGI runtime.
To use this sample OSGI launcher with ant excute the command

Code Block

ant run-<contributionname>

where run-<contributionname> is one of the targets in the build.xml file

To use this sample launcher to run all of the contributions as junit test cases,
execute the command

Code Block
mvn

in the launcher directory.

launcher-maven

To execute a sample contribution from Maven

look for contributions that have the following configuration in their pom.xml file:

<plugin>
<groupId>org.apache.tuscany.maven.plugins</groupId>
<artifactId>maven-tuscany-plugin</artifactId>
<version>2.0-SNAPSHOT</version>
</plugin>

For contributions that have this, for example, learning-more/binding-sca/contribution-calculator, do the following

cd samples/learning-more/binding-sca/contribution-calculator
mvn tuscany:run

This will launch the contribution in the Tuscany runtime and then wait. At this point you can use
other clients to send messages to services that the running SCA applcation exposes,
for example, try learning-more/calculator-scaclient.

launcher-osgi

The Tuscany runtime can be run in and OSGi container. 

Running in Equinox

On Windows, run

Code Block

java \-jar ..\..\modules\osgi-3.5.0-v20090520.jar \-configuration ..\..\features\configuration \-clean \-console

On *Unix, run

Code Block

java \-jar ../../modules/osgi-3.5.0-v20090520.jar \-configuration ../../features/configuration \-clean \-console

You should see the osgi console:

Code Block

osgi>

osgi> Jun 22, 2009 1:32:27 PM org.apache.tuscany.sca.extensibility.equinox.EquinoxServiceDiscoveryActivator start

INFO: Equinox-based service discoverer is now configured.

You can run "ss" command under the osgi> to see the status of the bundles.

Code Block

osgi> ss

Then you can install and start contributions as bundles by doing the following:

Code Block

osgi> install file:./path/to/contribution_bundle.jar

Note that contribution_bundle.jar will need an activator in order to register the bundle as a SCA contribution

Warning

see samples/????
TODO is this still true

Running on Felix

See http://tuscany.apache.org/documentation-2x/running-tuscany-sca-2x-with-equinox-and-felix.html

launcher-shell

launcher-webapp

learning-more

contributions

helloworld-bpel

helloworld-recursive

helloworld-recursive-ws

helloworld-scaclient

helloworld-spring

helloworld-ws-sdo

webapps

helloworld-bpel

helloworld-jaxrs

helloworld-jms

helloworld-js-client

helloworld-jsf

helloworld-jsp

helloworld-servlet

helloworld-spring

helloworld-stripes

==

async

embedded-jse-async-sample-launcher

sample-contribution-implementation-java-calculator-async

binding-comet

binding-jsonrpc

contribution-calculator

contribution-calculator-webapp

binding-rmi

contribution-calculator-reference

contribution-calculator-service

binding-sca

contribution-calculator

binding-ws

contribution-calculator

distributed-osgi

dynamic

dosgi-dynamic-calculator
dosgi-dynamic-calculator-operations

implementation.osgi

dosgi-calculator
dosgi-calculator-operations

implementation-extension

implementation-java

contribution-calculator

implementation-script

contribution-calculator

logging-scribe

maven-osgi-junit

calculator-osgi

calculator-rest-osgi

sca-client

calculator-scaclient

applications

store

...

matches the distribution you have downloaded select the appropriate link below:

2.0-Beta1 samples documentation