diff options
author | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2010-11-01 13:13:25 +0000 |
---|---|---|
committer | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2010-11-01 13:13:25 +0000 |
commit | f05fc0277fd9ea45b63b0fbb2f9b93a00aba11b8 (patch) | |
tree | 71c9cbd497fbfd314db2cdf76b8c862101bd5b90 /sca-java-2.x/branches | |
parent | 9c664561a96cd670179b9efdedeb4fd2a0aeafce (diff) |
TUSCANY-3674 - Add some rudimentary function to the helloworld apps so that the very first time user at least has a chance of working out what's going on.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1029640 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/branches')
6 files changed, 56 insertions, 7 deletions
diff --git a/sca-java-2.x/branches/2.0-Beta1/samples/getting-started/helloworld-contribution/pom.xml b/sca-java-2.x/branches/2.0-Beta1/samples/getting-started/helloworld-contribution/pom.xml index 6b2f595d3d..bcae29012b 100644 --- a/sca-java-2.x/branches/2.0-Beta1/samples/getting-started/helloworld-contribution/pom.xml +++ b/sca-java-2.x/branches/2.0-Beta1/samples/getting-started/helloworld-contribution/pom.xml @@ -33,9 +33,9 @@ <dependencies>
<dependency>
<groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-sca-api</artifactId>
+ <artifactId>tuscany-base-runtime-pom</artifactId>
<version>2.0-Beta1-SNAPSHOT</version>
- <scope>provided</scope>
+ <type>pom</type>
</dependency>
<dependency>
<groupId>junit</groupId>
diff --git a/sca-java-2.x/branches/2.0-Beta1/samples/getting-started/helloworld-contribution/src/main/resources/META-INF/sca-contribution.xml b/sca-java-2.x/branches/2.0-Beta1/samples/getting-started/helloworld-contribution/src/main/resources/META-INF/sca-contribution.xml index 589b9d25c7..61053aa92e 100644 --- a/sca-java-2.x/branches/2.0-Beta1/samples/getting-started/helloworld-contribution/src/main/resources/META-INF/sca-contribution.xml +++ b/sca-java-2.x/branches/2.0-Beta1/samples/getting-started/helloworld-contribution/src/main/resources/META-INF/sca-contribution.xml @@ -21,5 +21,6 @@ xmlns:sample="http://sample">
<deployable composite="sample:helloworld"/>
+ <deployable composite="sample:helloworldws"/>
</contribution>
diff --git a/sca-java-2.x/branches/2.0-Beta1/samples/getting-started/helloworld-contribution/src/main/resources/helloworldws.composite b/sca-java-2.x/branches/2.0-Beta1/samples/getting-started/helloworld-contribution/src/main/resources/helloworldws.composite index 52436d8b0a..abefee7360 100644 --- a/sca-java-2.x/branches/2.0-Beta1/samples/getting-started/helloworld-contribution/src/main/resources/helloworldws.composite +++ b/sca-java-2.x/branches/2.0-Beta1/samples/getting-started/helloworld-contribution/src/main/resources/helloworldws.composite @@ -22,7 +22,7 @@ targetNamespace="http://sample"
name="helloworldws">
- <component name="HelloworldComponent">
+ <component name="HelloworldWSComponent">
<implementation.java class="sample.HelloworldImpl"/>
<service name="Helloworld">
<binding.ws />
diff --git a/sca-java-2.x/branches/2.0-Beta1/samples/getting-started/helloworld-contribution/src/test/java/sample/HelloworldTestCase.java b/sca-java-2.x/branches/2.0-Beta1/samples/getting-started/helloworld-contribution/src/test/java/sample/HelloworldTestCase.java index 7e679ec0e9..ded7418469 100644 --- a/sca-java-2.x/branches/2.0-Beta1/samples/getting-started/helloworld-contribution/src/test/java/sample/HelloworldTestCase.java +++ b/sca-java-2.x/branches/2.0-Beta1/samples/getting-started/helloworld-contribution/src/test/java/sample/HelloworldTestCase.java @@ -20,14 +20,29 @@ package sample; import static org.junit.Assert.assertEquals;
+import org.apache.tuscany.sca.node.Contribution;
+import org.apache.tuscany.sca.node.Node;
+import org.apache.tuscany.sca.node.NodeFactory;
import org.junit.Test;
public class HelloworldTestCase {
@Test
public void testSayHello() {
- HelloworldImpl helloworld = new HelloworldImpl();
- assertEquals("Hello Petra", helloworld.sayHello("Petra"));
+ // Start up the Tuscany runtime with this modules as the contribution
+ Node node = NodeFactory.newInstance().createNode(new Contribution("c1", "target/classes"));
+ node.start();
+
+ // This contribution is configured to deploy the helloworld.composite file
+ // automatically. This defines the HelloworldComponent. Get a local proxy to it
+ // and call the sayHello service operation.
+ Helloworld helloworld = node.getService(Helloworld.class, "HelloworldComponent");
+ String response = helloworld.sayHello("Petra");
+ System.out.println("Response from helloworld.sayHello(\"Petra\") = " + response);
+ assertEquals("Hello Petra", response);
+
+ // Stop the Tuscany runtime
+ node.stop();
}
}
diff --git a/sca-java-2.x/branches/2.0-Beta1/samples/getting-started/helloworld-webapp/pom.xml b/sca-java-2.x/branches/2.0-Beta1/samples/getting-started/helloworld-webapp/pom.xml index 5ddcd80310..ebb470a875 100644 --- a/sca-java-2.x/branches/2.0-Beta1/samples/getting-started/helloworld-webapp/pom.xml +++ b/sca-java-2.x/branches/2.0-Beta1/samples/getting-started/helloworld-webapp/pom.xml @@ -34,9 +34,10 @@ <dependency> <groupId>org.apache.tuscany.sca</groupId> - <artifactId>tuscany-base-runtime</artifactId> + <artifactId>tuscany-base-runtime-pom</artifactId> <version>2.0-Beta1-SNAPSHOT</version> - </dependency> + <type>pom</type> + </dependency> <dependency> <groupId>junit</groupId> diff --git a/sca-java-2.x/branches/2.0-Beta1/samples/getting-started/helloworld-webapp/src/main/webapp/hello.html b/sca-java-2.x/branches/2.0-Beta1/samples/getting-started/helloworld-webapp/src/main/webapp/hello.html new file mode 100644 index 0000000000..05038391a0 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta1/samples/getting-started/helloworld-webapp/src/main/webapp/hello.html @@ -0,0 +1,32 @@ +<!-- + * 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> +<title>Apache Tuscany Helloworld Servlet Sample</title> +</head> + +<body> + +<h2>Apache Tuscany Helloworld Servlet Sample</h2> + +<a href="http://localhost:8085/HelloworldWSComponent/Helloworld?wsdl">WSDL for binding.ws of the Helloworld service of the HelloWorldWS component</a> + +</body> +</html>
\ No newline at end of file |