Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3
columnwidth15% *This page is under construction\- You are welcome to help and complete it* Welcome to the Apache Tuscany SCA User guide. Here you will find information aimed to help you understand SCA concepts and an example walk through for building your own SCA application. \\ {panel:title=Apache Tuscany SCA User Guide|borderStyle=solid|borderColor=#6699ff|titleBGColor=#D5EFFF|bgColor=#ffffff} * [Introduction|#Intro] * [Quick Guide to SCA |#Quick Guide to SCA] * [Example Walkthrough|#Example Walkthrough] ** [Getting Set Up|#Getting Set Up] ** [Running The Calculator Sample|#Running The Calculator Sample] ** [Building The Calculator Sample In Java|#Building The Calculator Sample In Java] ** [What Next|#What Next] * [Tuscany SCA Extensions|#Tuscany SCA Extensions] ** [The Extensible Runtime|#The Extensible Runtime] ** [Available Extensions|#Available Extensions] ** [Using Extensions|#Using Extensions] * [Tuscany SCA And IDEs|#Tuscany SCA And IDEs] ** [Using The Samples In An IDE Without Maven|#Using The Samples In An IDE Without Maven] ** [Using The Samples In An IDE If You Have Maven|#Using The Samples In An IDE If You Have Maven] \\ &nbsp; {panel} h2. {anchor:Intro}{color:#0099cc}Introduction{color} This user guide will help you become familiar with SCA concepts and walks you through an example that demonstrate how to build an SCA application. It also describes the different environments that Tuscany supports (such as command line clients or web applications) and how to package up applications to run in these environments. *There's nothing to it really!* Building SCA applications is easy. One of the main goals of Tuscany and SCA is to avoid imposing rules and requirements on how people write applications. We want to let people write application code the way they want without being concerned about the environment in which it will be used. After all, writing code to handle plumbing just gets in the way of writing the interesting stuff. So basically, you write the code for interesting bits, and Tuscany provides the environment that lets it run. Therefore, this guide is just an example of how an SCA application can be developed and is not a rule. h2. {anchor:Quick Guide to SCA} {color:#0099cc}Quick Guide to SCA {color} The [*quick guide to SCA*|Quick Guide To SCA] gives you an overview of SCA concepts and prepares you to work on the example below. You can skip this step if you are already familiar with SCA. For more details on SCA please refer to the specifications at [Open SOA web site|http://www.osoa.org]. h2. {anchor:Example Walkthrough} {color:#0099cc}Example Walkthrough{color} h3. {anchor:Overview of Example} {color:#0099cc}Overview of Example{color} We will use the calculator sample to walk through the steps for building an SCA application. As the name indicates, this example performs typical calculator operations. It is given two numbers and asked to perform an operation on them. Our calculator will handle add, subtract, multiply and divide. We start with a simple variation of the calculator example and extend it to include more advanced SCA features. h3. {anchor:Getting Set Up} {color:#0099cc}Getting Set Up{color} * Download [Tuscany Java SCA release|http://incubator.apache.org/tuscany/sca_downloads.html]. Please download the latest binary release. You can use the source code release but you will have to use Maven at all stages. * Download prerequisites ** [Java 5|http://java.sun.com/javase/downloads/index.jsp] ** [Maven 2.0.4+|http://maven.apache.org/download.html] If you want to build the sample with Ant rather than Maven you will need to download Ant instead ** [Ant 1.7.0|http://ant.apache.org/bindownload.cgi] h3. {anchor:Running The Calculator Sample}{color:#0099cc}Running The Calculator Sample{color} Calculator is provided as a sample under SCA Java binary distribution. Let's first run the sample before we go about building it. It is easy! * Go to the directory ..\samples\calculator * if you are using Windows issue the command: {code} java -cp ..\..\lib\tuscany-sca-manifest.jar;target\sample-calculator.jar calculator.CalculatorClient {code} * if you are using *nix issue the command: {code} java -cp ../../lib/tuscany-sca-manifest.jar:target/sample-calculator.jar calculator.CalculatorClient {code} You should see the following result: 3 + 2=5.0 3 - 2=1.0 3 * 2=6.0 3 / 2=1.5 If you are using the source disitribution then we suggest you use Maven to build and run the calculator sample because the tuscany-sca-manifest.jar is not provided with the source distribution. This jar is part of the binary distribution and collects together all of the tuscany jars in one place so that the java command line is nice and short when running samples. h3. {anchor:Building The Calculator Sample In Java}{color:#0099cc}Building The Calculator Sample In Java{color} h4. What you will learn This example illustrates how to define your application while staying focused on the business logic. It walks you through the steps of building a composite application called calculator. All connections between the components within the composite are local and defined using Java interfaces. h4. Example walk-through *Step 1 - Define what building blocks are needed:* Think about how your application can be broken down into smaller functions/services. Each block is a logical unit of operation that can be used in the overall application. In this case, calculator application can be divided into five blocks: AddService block, SubstractService block, MultiplyService block and DivideService block and a main block that takes a request and routes it to the right operation. We have called this main block the CalculatorService !CalculatorBlocks2.jpg! (?)TODO - need to update the diagram to change Add -> AddService etc. Who has the editable version? *Step 2 - Implement each block:* Now that you have identified the blocks of functionality in your application, you are ready to create each block. In SCA the blocks of functionality are referred to as components so let's look at how we implement a component. We'll take the AddService component as our first example. The AddService component will provide a service that adds two numbers together. The CalcualtorService component uses the AddService component whenever it is asked to perform additions. If we were writing the AddService component in plain old Java we would start by describing a (Java) interface. {code} public interface AddService { double add(double n1, double n2); } {code} Now, we provide an implementation of this interface. {code} public class AddServiceImpl implements AddService { public double add(double n1, double n2) { return n1 + n2; } } {code} But wait! Aren't we writing an SCA component? It must be more complicated that that - the mere, plain old Java interface and implementation, right? Well, actually an SCA component can just be plain old Java so we have just done all the coding we needed to implement the SCA AddService component. We can use SCA to expose the service that the AddService component provides over any of the supported bindings, for example, WebServices, JMS or RMI, without changing out the AddService implementation. Let's take a look at the CalculatorService component. This is interesting because it's going to call the AddService component. In the full application it will call the SubtractService, MultiplyService and DivideService components as well, but we will ignore these for the time being as they follow the same pattern as we will implement for the AddService component. Again we will start by defining an interface because CalcultorService is itself providing an interface that others will call. {code} public interface CalculatorService { double add(double n1, double n2); double subtract(double n1, double n2); double multiply(double n1, double n2); double divide(double n1, double n2); } {code} Now we implement this interface. {code} public class CalculatorServiceImpl implements CalculatorService { private AddService addService; private SubtractService subtractService; private MultiplyService multiplyService; private DivideService divideService; public void setAddService(AddService addService) { this.addService = addService; } ...set methods for the other attributes would go here public double add(double n1, double n2) { return addService.add(n1, n2); } ...implementations of the other methods would go here } {code} *Step 3 - Assembling the application:* So all well and good but how do we actually run these two components. Well of course the java programmer in us want's to get down to it, write a mainline to connect our two components together and run then. We could still do that easily in this case. {code} public class CalculatorClient { public static void main(String[] args) throws Exception { CalculatorServiceImpl calculatorService = new CalculatorServiceImpl(); AddService addService = new AddServiceImpl(); calculatorService.setAddService(addService); System.out.println("3 + 2=" + calculatorService.add(3, 2)); // calls to other methods go here if we have implemented SubtractService, MultiplyService, DivideService } } {code} But this doesn't run using the Tuscany SCA runtime. What do we have to do to make it run in Tuscany? Well Actually not much. First let's change the client to fire up the Tuscany SCA runtime before calling our components. {code} public class CalculatorClient { public static void main(String[] args) throws Exception { SCADomain scaDomain = SCADomain.newInstance("Calculator.composite"); CalculatorService calculatorService = scaDomain.getService(CalculatorService.class, "CalculatorServiceComponent"); System.out.println("3 + 2=" + calculatorService.add(3, 2)); // calls to other methods go here if we have implemented SubtractService, MultiplyService, DivideService scaDomain.close(); } } {code} You can see that we start by using a static method on SCADomain to create a new instance of itself. The SCADomain is a concept in SCA that represents the boundary of an SCA system. This could be distributed across many processors but that's not implemented in Tuscany yet so lets concentrate on getting this working inside a single Java VM. The parameter "Calculator.composite" refers to an XML file that tells SCA how the components in our calculator application are assembled into a working applcation. Here is the XML that's inside Calculator.composite. {code} <composite xmlns="http://www.osoa.org/xmlns/sca/1.0" name="Calculator"> <component name="CalculatorServiceComponent"> <implementation.java class="calculator.CalculatorServiceImpl"/> <reference name="addService" target="AddServiceComponent" /> <!-- references to SubtractComponent, MultiplyComponent and DivideComponent --> </component> <component name="AddServiceComponent"> <implementation.java class="calculator.AddServiceImpl"/> </component> <!-- definitions of SubtractComponent, MultiplyComponent and DivideComponent --> </composite> {code} You can see that we define two components here and specify the Java implementation classes that Tuscany SCA needs to load to make them work. These are the classes we have just implemented. Also note that the CalculatorServiceComponent has a reference named "addService". In the XML this reference targets the AddServiceComponent. It is no coincidence that the reference name, "addService", matches the name of the addService field we created when we implemented CalculatorServiceImpl. The Tuscany SCA runtime parses the information from the XML composite file and uses it to build the objects and relationships that represent our calculator application. It first creates instances of AddServiceImpl and CalcualtorSreviceImpl. It then injects a reference to the AddServiceImpl object in the addService field in the CalculatorServiceImpl object. This is equivalent to this piece of code from our normal Java client. {code} CalculatorServiceImpl calculatorService = new CalculatorServiceImpl(); AddService addService = new AddServiceImpl(); calculatorService.setAddService(addService); {code} Once the composite file is loaded into the SCADomain our client code asks the SCADomain to give us a reference to the component called "CalculatorServiceComponent". {code} CalculatorService calculatorService = scaDomain.getService(CalculatorService.class, "CalculatorServiceComponent"); {code} We cna use this reference *Step 4 - Deploying the applcation:* So as long at "Calculator.composite" file is present on our class path, along with the rest of the tuscany jars, we can run our sample as we did previously. The samples come with an Ant build.xml file that allows the sample files to be rebuilt so if you want to experiment with the sample code you can do so and then recompile it. Once recompiled you can run it as before in the [Running The Calculator Sample|SCA Java User Guide#Running The Calculator Sample] section. We also provide a run target in the Ant build.xml file so the calculator sample can also be run using. {noformat} ant run {noformat} h3. {anchor:What Next}{color:#0099cc}What Next?{color} Looking back, the client code we have written to start the calculator application using the Tuscany SCA runtime is no longer than a normal Java client for the application. However we do how have the XML composite file that describes how our application is assembled. This concept of assembly is a great advantage as our applications become more complex and we want to change them, reuse them, integrate them with other applications or just further develop them using a programming model consistent with all our other SCA applicatiosn regardless of what language is used to implement each of them. For example, lets say our calculator sample is so poweful and popular that we want to put it on the company intranet and let other people access it as a service directly from their browser based Web2.0 applications. It's at this point we would normally start reaching for the text books to work out how to make this happen. As we have an XML file that describes our application it's easy in Tuscany SCA. The following should do the trick. {code} <composite xmlns="http://www.osoa.org/xmlns/sca/1.0" name="Calculator"> <service name="CalculatorService" promote="CalculatorServiceComponent/CalculatorService"> <interface.java interface="calculator.CalculatorService"/> <binding.jsonrpc/> </service> <component name="CalculatorServiceComponent"> <implementation.java class="calculator.CalculatorServiceImpl"/> <reference name="addService" target="AddServiceComponent" /> <!-- references to SubtractComponent, MultiplyComponent and DivideComponent --> </component> <component name="AddServiceComponent"> <implementation.java class="calculator.AddServiceImpl"/> </component> <!-- definitions of SubtractComponent, MultiplyComponent and DivideComponent --> </composite> {code} All we have done is added the <service> element which tells Tuscany SCA how to expose our CalculatorServiceComponent as a JSONRPC service. Note that we didn't have to change the Java code of our components. This is just a configuration change. The helloworld-jsonrpc sample shows a working example of the jsonrpc binding. (?) TODO - we don't have a JSONRPC version of the calculator sample If we really wanted a SOAP/HTTP web service we can do that easily too. The helloworld-ws-service and helloworld-ws-reference samples show you how to work with web services. (?) TODO - we don't have a web services version of the calcualtor sample SCA allows other kinds of flxibility. We can rewire our components, for example, using a one of the remote bindings, like RMI we could have the CalculatorServiceComponent running on one machine wired to a remote version of the application running on another machine using RMI. The calculator-rmi-service and calculator-rmi-reference samples show the RMI binding at work. We could also introduce components implemented in different languages, for example, let's add the SubtractServiceComponent implemented in Ruby. {code} <composite xmlns="http://www.osoa.org/xmlns/sca/1.0" name="Calculator"> <component name="CalculatorServiceComponent"> <implementation.java class="calculator.CalculatorServiceImpl"/> <reference name="addService" target="AddServiceComponent" /> <reference name="subtractService" target="SubtractServiceComponent" /> <!-- references to MultiplyComponent and DivideComponent --> </component> <component name="AddServiceComponent"> <implementation.java class="calculator.AddServiceImpl"/> </component> <component name="SubtractServiceComponent"> <implementation.script script="calculator/SubtractServiceImpl.rb"/> </component> <!-- definitions of MultiplyComponent and DivideComponent --> </composite> {code} Of course we need the Ruby code that implements the component. {code} def subtract(n1, n2) return n1 - n2 end {code} The Tuscany SCA runtime handles wiring Java components to Ruby components and performs any required data transformations. The calculator-script sample shows different script languages in use. So, now that our application is desribed as an SCA assembly there are lots of possibilities as we futher develop it and integration it with other applications. The following sections provide more detail on the features provided by Tuscany SCA. h2. {anchor:Tuscany SCA Extensions}{color:#0099cc}Tuscany SCA Extensions{color} h3. {anchor:The Extensible Runtime}{color:#0099cc}The Extensible Runtime{color} The Tuscany SCA runtime comprises a small set of core software which deals with: * Managing extesions to the Tuscany SCA Runtime(_core_) * Building and in memory assembly model of SCA applications (_assembly_) * Processing SCA applcations that are contributed (_contribution_) * Supporting databindings (_databinding_) * Supporting Tuscany SCA when its embedded in other environments (_embedded_) * Supporting Tuscany SCA when its running in a servlet container (_http_) The collections of interfaces that describe these features are referred to as the System Programming Interface (SPI). The developer guide discusses them in more detail but from a user perpective the important thing to realize is that the majority of interesting functionality in Tuscany SCA is provided by extensions which build upon this core SPI. These extensions provide Tuscany SCA with its ability to support a wide variety features * Implementation types * Binding types * Databinding types * Interface description styles * Hosting environments So to undestand how to use the Tuscany SCA runtime is to understand how to use its extensions. h3. {anchor:Available Extensions}{color:#0099cc}Available Extensions{color} More often than not using an extension involved adding information to you SCDL files for implementation file but this is not always the case. The links below describe each of the extesions and how they can be used and configured. {table:border=0} {table-row} {table-cell} h3. {anchor:Implementation Types}{color:#0099cc}Implementation Types{color} {table-cell} {table-row} {table-row} {table-cell}implementation.java{table-cell} {table-cell}Support for SCA components implemented with Java classes{table-cell} {table-cell}Available from 0.90{table-cell} {table-row} {table-row} {table-cell}[implementation.script|SCA Java implementation.script] {table-cell} {table-cell}Support for SCA components implemented with scripting languages{table-cell} {table-cell}Available from 0.90{table-cell} {table-row} {table-row} {table-cell} h3. {anchor:Protocol Bindings}{color:#0099cc}Protocol Bindings{color} {table-cell} {table-row} {table-row} {table-cell}binding.jms{table-cell} {table-cell}Asynchronous JMS messaging{table-cell} {table-cell}Under development{table-cell} {table-row} {table-row} {table-cell}[binding.jsonrpc|SCA Java binding.jsonrpc]{table-cell} {table-cell}The JSON-RPC protocol{table-cell} {table-cell}Available from 0.90{table-cell} {table-row} {table-row} {table-cell}binding.rmi{table-cell} {table-cell}The Java RMI protocol{table-cell} {table-cell}Available from 0.90{table-cell} {table-row} {table-row} {table-cell}binding.ws{table-cell} {table-cell}SOAP/HTTP web services{table-cell} {table-cell}Available from 0.90{table-cell} {table-row} {table-row} {table-cell} h3. {anchor:Data Bindings}{color:#0099cc}Data Bindings{color} {table-cell} {table-row} {table-row} {table-cell}databinding-axiom{table-cell} {table-cell}Support for AXIOM databinding{table-cell} {table-cell}Available from 0.90{table-cell} {table-row} {table-row} {table-cell}databinding-jaxb {table-cell} {table-cell}Support for&nbsp;JAXB databinding {table-cell} {table-cell}Available from 0.90{table-cell} {table-row} {table-row} {table-cell}databinding-sdo{table-cell} {table-cell}Support for&nbsp;SDO databinding&nbsp;{table-cell} {table-cell}Available from 0.90{table-cell} {table-row} {table-row} {table-cell}databinding-sdo-axiom{table-cell} {table-cell}Support optimzed SDO to AXIOM transformation{table-cell} {table-cell}Available from 0.90{table-cell} {table-row} {table-row} {table-cell} h3. {anchor:Hosting Tuscany}{color:#0099cc}Hosting Tuscany{color} {table-cell} {table-row} {table-row} {table-cell}host-embedded{table-cell} {table-cell}A simple embedded host that boots Tuscany core and application from the same classpath{table-cell} {table-cell}Available from 0.90{table-cell} {table-row} {table-row} {table-cell}host-webapp{table-cell} {table-cell}Intialises the Tuscany runtime for use in a Web Application{table-cell} {table-cell}Available from 0.90{table-cell} {table-row} {table-row} {table-cell}http-jetty{table-cell} {table-cell}The integration between Tuscany and the Jetty&nbsp;web container{table-cell} {table-cell}Available from 0.90{table-cell} {table-row} {table-row} {table-cell}http-tomcat{table-cell} {table-cell}The integration between Tuscany and the Tomcat web container{table-cell} {table-cell}Available from 0.90{table-cell} {table-row} {table} h3. {anchor:Using Extensions}{color:#0099cc}Using Extensions{color} Extensions are loaded into the Tuscany SCA runtime using the Java service loading mechanism. Each extension is packaged as a jar and provides a file; {code} META-INF/services/org.apache.tuscany.sca.core.ModuleActivator {code} Using this information the Tuscany SCA runtime will load all extensions present on the the Java CLASSPATH. So if you want to use a particular feature make sure that it's available on your classpath. Conversely if you don't want a particular feature to be active remove it from the classpath. Writing a new extension is a subject on its own and is described in the [extension guide|SCA JAVA Extension Developer Guide] h2. {anchor:Tuscany SCA And IDEs}{color:#0099cc}Tuscany SCA And IDEs{color} h3. {anchor:Using The Samples In An IDE Without Maven}{color:#0099cc}Using The Samples In An IDE Without Maven{color} We don't provide any IDE project files with our disitributions so you will have to import the sample files into your IDE manually. Here's an example of how it can be done using Eclipse. In a new or existing workspace {noformat} Create a new java project to represent the sample you want to work on, e.g. calculator Import all of the sample code and resources into this project, e.g. File, Import and then select tuscany-sca-0.90-incubating\samples\calculator from the filesystem Configure the source path to include src/main/java src/main/resources Configure the output folder to be calculator/target Configure the build path to include all of the jars provided in lib If you select calculator.CalculatorClient.java and run as "Java Application" you should see 3 + 2=5.0 3 - 2=1.0 3 * 2=6.0 3 / 2=1.5 {noformat} The details of how to do this for other development environments will vary but the process will be similar. h3. {anchor:Using The Samples In An IDE If You Have Maven}{color:#0099cc}Using The Samples In An IDE If You Have Maven{color} If you are a Maven user you can use it to generate all of the IDE project files for you automatically. This works best if you generate IDE projects for all of the Apache Tuscany modules. You can then include the ones you are interested in working with in you IDE. To build IDE project files for all of the modules in Apache Tuscany SCA; {noformat} cd sca {noformat} If you are an Eclipse user do the following {noformat} mvn -Peclipse eclipse:eclipse {noformat} If you are an IDEA user do the following {noformat} mvn idea:idea {noformat} These commands generate project files for each module in Apache Tuscany SCA. The modules you are interested in can now be included in your IDE, for example, in Eclipse, if you create a new Java project and use the option to "create a new project from existing source" you can specify an SCA module directory, which includes the generated project files, and Eclipse will treat it like any other Java project. {HTMLcomment:hidden}{children:sort=creation}{HTMLcomment}
Sectionpanel
borderborderColortrue#C3CDA1
bgColor
#ECF4D1
titleBGColor
Include Page
TUSCANY: Repeating MenuTUSCANY: Repeating Menu
Include Page
TUSCANY: Java SCA Menu NewTUSCANY: Java SCA Menu New
Column
width85%
Wiki Markup
#C3CDA1
titleApache Tuscany SCA User Guide
borderStylesolid
Note
title:Notification
title:Notification
Center
This page is undergoing complete re-write to be more like a user guide than it is today. You are welcome to help review and complete it.

Anchor
Intro
Intro

Background Color
color#C3CDA1
About Tuscany User Guide

It is assumed that by now you have browsed through the introduction to SCA section or are familiar with SCA. This user guide helps you learn more about SCA through Tuscany. It starts with building a simple application and progresses into more advanced features through references to samples that reside in Tuscany.

Before we start, let's emphasise that it is Tuscany's goal to provide an implementaiton that avoids imposing rules and requirements on how you write your applications. In fact the goal is to let you write application code without being concerned about the technology you choose or the environment in which it will be used. You focus on your business logic and Tuscany infrastructure will handle the rest.

Anchor
Create Your First Application
Create Your First Application

Background Color
color#C3CDA1
Create Your First Application

This simple exercise provides you with a hands-on experience for creating an SCA calculator application. Although this is a simple application, it will cover the following items:

  • Creating SCA POJO-based components
  • Composing an application
  • Deploying the application
  • Modifying the application to use a different binding

Give create a calculator application a try.

Anchor
webservices
webservices

Background Color
color#C3CDA1
Create a Webservices component

Learn how to expose your pojo components as webservices. This will cover

  • Creating SCA POJO-based component and exposing it as a webservice

Give Building your first web services using Tuscany a try.

Anchor
distributed application
distributed application

Background Color
color#C3CDA1
Create a Distributed Application

A Tuscany application can be run in a single or multi-node environment. Here we introduce the Tuscany node and SCA domain and explain how the calculator example can be distributed across multiple nodes. We will cover the following:

  • What is a node?
  • What is the SCA domain
  • How to create and application that will run across multiple nodes in a domain

Take a look at Distributed SCA Domain

Anchor
Create an enterprise Application
Create an enterprise Application

Background Color
color#C3CDA1
Create a Store Enterprise Application

Now that you have created a simple calculator application, let's move on to a more interesting application called store. This application is developed in Eclipse enviromment and uses more advanced features that are offered in Tuscany. You will notice that it is as simple to create this application as it was to create the calculator application.

Getting Started with Tuscany using a Tuscany Distribution In Eclipse
This is a quick getting started guide that go trough the steps of building the store scenario using the Tuscany SCA distribution manually installed into Eclipse

Getting Started with Tuscany using the Tuscany Eclipse Plugin

This is a quick getting started guide that go trough the steps of building the store scenario using the Tuscany Eclipse plugin.

Anchor
Host Environments
Host Environments

Background Color
color#C3CDA1
Host Environments

Tusncany applications can be run in a Tuscany standalone environment or in multitude of different host environments. You have seen examples of how to run in standalone environments in the previous sections. Here we cover other platforms.

Tomcat

Running a Tuscany SCA Java enabled webapp in Tomcat is as simple as copying the webapp to the Tomcat webapps directory.

Geronimo

(warning) TODO ... get link from Vamsi

WebSphere

Please see this blog entry to learn how to do this: http://jsdelfino.blogspot.com/2007/10/how-to-use-apache-tuscany-with.html

WebLogic

Please see this user's blog to learn how to do this: http://davesowerby.blogspot.com/2008/02/using-tuscany-with-weblogic.html

Eclipse

You can develop and run your applications in Eclipse environment.
Getting Started with Tuscany using a Tuscany Distribution In Eclipse
Tuscany also provides a Tuscany Eclipse plug-in to facilitate the development of SCA applications on Tuscany in the Eclipse environment.
Getting Started with Tuscany using the Tuscany Eclipse Plugin

Anchor
using extensions
using extensions

Background Color
color#C3CDA1
Using Extensions

What are extensions? Well, we call these extensions: bindings, implementation types, interface types, policies. Think of SCA Java infrastructure as providing the framework that supports all these pluggable functionality. Bindings provide protocol handling, implementation types provide support for different languages and programming models, interface types allow enable you to define interfaces in different ways for example Java, WSDL and policies enable you to choose which type of policies you want to apply to your application. You can pick and choose what you need based on your requirements and the technologies that you use. For a complete list of available extensions and their documentation please check this link.

Anchor
security
security

Background Color
color#C3CDA1
Running Tuscany with Java2 Security Enabled

Tuscany can be enabled to run with Java2 security on.
Running Tuscany with Java 2 Security Enabled

Anchor
Tuscany dependencies
Tuscany dependencies

Background Color
color#C3CDA1
Do I need all of Tuscany?

Tuscany SCA has a very modular architecture. Think of it as building blocks. You pick what you need for your particular application. In 1.x, there is one binary distribution. you can get to a smaller subset through building the source with the appropriate modules that you need. In 2.x code line, we are aiming to provide smaller distributions. For more information about how you can build a smaller distribution please see this link