From bdd0a41aed7edf21ec2a65cfa17a86af2ef8c48a Mon Sep 17 00:00:00 2001 From: dims Date: Tue, 17 Jun 2008 00:23:01 +0000 Subject: Move Tuscany from Incubator to top level. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@668359 13f79535-47bb-0310-9956-ffa450edef68 --- .../1.2.1/samples/helloworld-ws-deep-webapp/README | 1 + .../samples/helloworld-ws-deep-webapp/build.xml | 158 +++++++++++++++++++++ .../samples/helloworld-ws-deep-webapp/pom.xml | 45 ++++++ .../src/main/java/helloworld/HelloWorldImpl.java | 33 +++++ .../main/java/helloworld/HelloWorldService.java | 30 ++++ .../sca-deployables/helloworldws.composite | 32 +++++ .../src/main/resources/wsdl/helloworld.wsdl | 79 +++++++++++ .../src/main/webapp/WEB-INF/web.xml | 27 ++++ 8 files changed, 405 insertions(+) create mode 100644 tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/README create mode 100644 tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/build.xml create mode 100644 tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/pom.xml create mode 100644 tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/src/main/java/helloworld/HelloWorldImpl.java create mode 100644 tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/src/main/java/helloworld/HelloWorldService.java create mode 100644 tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/src/main/resources/META-INF/sca-deployables/helloworldws.composite create mode 100644 tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/src/main/resources/wsdl/helloworld.wsdl create mode 100644 tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/src/main/webapp/WEB-INF/web.xml (limited to 'tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp') diff --git a/tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/README b/tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/README new file mode 100644 index 0000000000..0d2141dda5 --- /dev/null +++ b/tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/README @@ -0,0 +1 @@ +http://localhost:8080/sample-helloworld-ws-service-webapp/SCA/HelloWorldService?wsdl diff --git a/tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/build.xml b/tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/build.xml new file mode 100644 index 0000000000..25a8232b28 --- /dev/null +++ b/tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/build.xml @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/pom.xml b/tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/pom.xml new file mode 100644 index 0000000000..28ac30d30c --- /dev/null +++ b/tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/pom.xml @@ -0,0 +1,45 @@ + + + + 4.0.0 + + org.apache.tuscany.sca + tuscany-sca + 1.2.1-incubating + + + sample-helloworld-ws-service-webapp + Apache Tuscany SCA HelloWorld Web Service Sample Webapp + war + + + + org.apache.tuscany.sca + tuscany-sca-api + 1.2.1-incubating + provided + + + + + ${artifactId} + + + diff --git a/tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/src/main/java/helloworld/HelloWorldImpl.java b/tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/src/main/java/helloworld/HelloWorldImpl.java new file mode 100644 index 0000000000..0de3c70303 --- /dev/null +++ b/tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/src/main/java/helloworld/HelloWorldImpl.java @@ -0,0 +1,33 @@ +/* + * 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. + */ +package helloworld; + +import org.osoa.sca.annotations.Service; + +/** + * This class implements the HelloWorld service. + */ +@Service(HelloWorldService.class) +public class HelloWorldImpl implements HelloWorldService { + + public String getGreetings(String name) { + return "Hello " + name; + } + +} diff --git a/tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/src/main/java/helloworld/HelloWorldService.java b/tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/src/main/java/helloworld/HelloWorldService.java new file mode 100644 index 0000000000..268d90e910 --- /dev/null +++ b/tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/src/main/java/helloworld/HelloWorldService.java @@ -0,0 +1,30 @@ +/* + * 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. + */ +package helloworld; + +import org.osoa.sca.annotations.Remotable; + +/** + * This is the business interface of the HelloWorld greetings service. + */ +@Remotable +public interface HelloWorldService { + + public String getGreetings(String name); +} diff --git a/tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/src/main/resources/META-INF/sca-deployables/helloworldws.composite b/tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/src/main/resources/META-INF/sca-deployables/helloworldws.composite new file mode 100644 index 0000000000..114608e4d8 --- /dev/null +++ b/tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/src/main/resources/META-INF/sca-deployables/helloworldws.composite @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + diff --git a/tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/src/main/resources/wsdl/helloworld.wsdl b/tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/src/main/resources/wsdl/helloworld.wsdl new file mode 100644 index 0000000000..0b95fbd14f --- /dev/null +++ b/tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/src/main/resources/wsdl/helloworld.wsdl @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/src/main/webapp/WEB-INF/web.xml b/tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000000..182fd38fd9 --- /dev/null +++ b/tags/java/sca/1.2.1/samples/helloworld-ws-deep-webapp/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,27 @@ + + + + + + + Apache Tuscany HelloWorld Web Service Sample + + -- cgit v1.2.3