summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/branches/sca-java-M2/samples/standalone/inner.composite/readme.html
blob: 1b8ece4396ab8667cf0c56d8ad0336abed35e260 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!--
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.    
-->

<html>
<head>
  <meta http-equiv="Content-Type" content=
  "text/html; charset=us-ascii">
  <meta http-equiv="Content-Style-Type" content="text/css">

  <title>Tuscany Inner Composite Sample</title>
  <!-- LINK rel="stylesheet" href="ait.css" type="text/css" -->
  <link rel="stylesheet" href="../../css/base.css" type="text/css">
</head>

<body>
  <h3>Tuscany Inner Composite Sample</h3>

  <h4>Overview</h4>

  <p>The Tuscany Inner Composite sample illustrates an asynchronous
  callback scenario across atomic components contained in separate
  composites. The containing (inner) composites are themselves contained in
  a single composite and an explicit wire connects them. Thus, the
  corresponding composite reference and service do not specify a
  binding (not even binding.sca), and the connection and invocation
  occur in the same process.</p>

  <h4>Location</h4>

  <p>This sample is located &nbsp;in the
  samples\standalone\inner.composite directory. All the
  following commands should be issued while working in the sample
  directory.</p>

  <h4>Prerequisites</h4>

  <p>Obtain the following prerequisites and install according to
  their documentation.</p>

  <ul>
    <li><a href="http://java.sun.com/javase/downloads/index.jsp"
    target="_blank">JDK 5.0</a></li>

    <li><a href="http://maven.apache.org/download.html" target=
    "_blank">Maven 2.0.4</a></li>
  </ul>

  <h4>Building</h4>

  <p>To build the sample&nbsp; issue :</p>
  <pre>
<code>mvn<br></code>
</pre>

  <p>The result after executing is in the <span style=
  "font-weight: bold;">target</span> subdirectory the <span style=
  "font-weight: bold;">sample-innercomposite.jar</span></p>

  <h4>Setup</h4>

  <p>Set up the Tuscany standalone runtime environment using the
  following command:</p>
  <pre>
<code>mvn dependency:unpack <br></code>
</pre>

  <p>After completion there should be a <span style=
  "font-weight: bold;">target\distribution</span> subdirectory
  created that has the Tuscany standalone runtime.</p>

  <h4>Running</h4>

  <p>Execute the following command: (<span style=
  "font-style: italic;">cut and paste to command line</span>)</p>
  <pre>
<code>java -jar target/distribution/bin/launcher.jar target/sample-innercomposite.jar</code>
</pre>

  <h4>Results</h4>

  <p>The sample when run should simply display to the standard
  output:<br>
<samp>
<br>Main thread Thread[main,5,main]
<br>Source: Client.main -> Source.clientMethod
<br>Source: Client.main => Source.clientMethod
<br>Target: Client.main => Source.clientMethod
<br>Work thread Thread[pool-1-thread-2,5,main]
<br>Result: Client.main => Source.clientMethod -> Target.someMethod
<br>Target: Client.main -> Source.clientMethod
<br>Work thread Thread[pool-1-thread-3,5,main]
<br>Result: Client.main -> Source.clientMethod -> Target.someMethod</samp>
</p>
</body>
</html>