diff options
author | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2010-09-20 09:28:47 +0000 |
---|---|---|
committer | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2010-09-20 09:28:47 +0000 |
commit | 654cd394fb771543e6da76a92a1b9befbba9c73a (patch) | |
tree | 0c18d52bc73064512e976bc1fe07a14222fbe698 /sca-java-2.x/trunk | |
parent | d42e5d18a190370d153a5c6680afe42d8cdcb11a (diff) |
Start some instructions for running in an OSGi framework
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@998845 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk')
-rw-r--r-- | sca-java-2.x/trunk/samples/running-tuscany/launcher-osgi/README | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/samples/running-tuscany/launcher-osgi/README b/sca-java-2.x/trunk/samples/running-tuscany/launcher-osgi/README new file mode 100644 index 0000000000..6df2c1d2f2 --- /dev/null +++ b/sca-java-2.x/trunk/samples/running-tuscany/launcher-osgi/README @@ -0,0 +1,33 @@ +The Tuscany runtime can be run in and OSGi container.
+
+Running in Equinox
+------------------
+
+On Windows, run
+java -jar ..\..\modules\osgi-3.5.0-v20090520.jar -configuration ..\..\features\configuration -clean -console
+
+On *Unix, run
+java -jar ../../modules/osgi-3.5.0-v20090520.jar -configuration ../../features/configuration -clean -console
+
+You should see the osgi console:
+
+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.
+osgi> ss
+
+Then you can install and start contributions as bundles by doing the following:
+
+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
+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
|