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 --- .../samples/helloworld-ws-service-webapp/README | 1 + .../samples/helloworld-ws-service-webapp/build.xml | 156 +++++++++++++++++++++ .../samples/helloworld-ws-service-webapp/pom.xml | 80 +++++++++++ .../src/main/java/helloworld/HelloWorldImpl.java | 33 +++++ .../main/java/helloworld/HelloWorldService.java | 30 ++++ .../src/main/resources/wsdl/helloworld.wsdl | 79 +++++++++++ .../sca-deployables/helloworldws.composite | 32 +++++ .../src/main/webapp/WEB-INF/geronimo-web.xml | 33 +++++ .../src/main/webapp/WEB-INF/web.xml | 45 ++++++ 9 files changed, 489 insertions(+) create mode 100644 sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/README create mode 100644 sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/build.xml create mode 100644 sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/pom.xml create mode 100644 sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/src/main/java/helloworld/HelloWorldImpl.java create mode 100644 sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/src/main/java/helloworld/HelloWorldService.java create mode 100644 sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/src/main/resources/wsdl/helloworld.wsdl create mode 100644 sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/src/main/webapp/META-INF/sca-deployables/helloworldws.composite create mode 100644 sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/src/main/webapp/WEB-INF/geronimo-web.xml create mode 100644 sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/src/main/webapp/WEB-INF/web.xml (limited to 'sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp') diff --git a/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/README b/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/README new file mode 100644 index 0000000000..66040004f8 --- /dev/null +++ b/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/README @@ -0,0 +1 @@ +http://localhost:8080/sample-helloworld-ws-service-webapp/SCA/HelloWorldService?wsdl diff --git a/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/build.xml b/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/build.xml new file mode 100644 index 0000000000..a6b5529cc5 --- /dev/null +++ b/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/build.xml @@ -0,0 +1,156 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/pom.xml b/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/pom.xml new file mode 100644 index 0000000000..99edb7412e --- /dev/null +++ b/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/pom.xml @@ -0,0 +1,80 @@ + + + + 4.0.0 + + org.apache.tuscany.sca + tuscany-sca + 2.0-incubating-SNAPSHOT + + sample-helloworld-ws-service-webapp + Apache Tuscany SCA HelloWorld Web Service Sample Webapp + war + + + + apache.incubator + http://people.apache.org/repo/m2-incubating-repository + + + + + + org.apache.tuscany.sca + tuscany-host-webapp + 2.0-incubating-SNAPSHOT + + + + org.apache.tuscany.sca + tuscany-binding-ws-axis2 + 2.0-incubating-SNAPSHOT + runtime + + + + org.apache.tuscany.sca + tuscany-implementation-java-runtime + 2.0-incubating-SNAPSHOT + runtime + + + + + stax + stax-api + 1.0.1 + provided + + + + + javax.servlet + servlet-api + 2.3 + provided + + + + + ${artifactId} + + + diff --git a/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/src/main/java/helloworld/HelloWorldImpl.java b/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/src/main/java/helloworld/HelloWorldImpl.java new file mode 100644 index 0000000000..0de3c70303 --- /dev/null +++ b/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-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/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/src/main/java/helloworld/HelloWorldService.java b/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/src/main/java/helloworld/HelloWorldService.java new file mode 100644 index 0000000000..268d90e910 --- /dev/null +++ b/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-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/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/src/main/resources/wsdl/helloworld.wsdl b/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/src/main/resources/wsdl/helloworld.wsdl new file mode 100644 index 0000000000..0b95fbd14f --- /dev/null +++ b/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/src/main/resources/wsdl/helloworld.wsdl @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/src/main/webapp/META-INF/sca-deployables/helloworldws.composite b/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/src/main/webapp/META-INF/sca-deployables/helloworldws.composite new file mode 100644 index 0000000000..114608e4d8 --- /dev/null +++ b/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/src/main/webapp/META-INF/sca-deployables/helloworldws.composite @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + diff --git a/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/src/main/webapp/WEB-INF/geronimo-web.xml b/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/src/main/webapp/WEB-INF/geronimo-web.xml new file mode 100644 index 0000000000..146808c7e2 --- /dev/null +++ b/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/src/main/webapp/WEB-INF/geronimo-web.xml @@ -0,0 +1,33 @@ + + + + + + + org.apache.tuscany.sca + sample-helloworld-ws-service-webapp + 2.0-incubating-SNAPSHOT + war + + + + + diff --git a/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/src/main/webapp/WEB-INF/web.xml b/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000000..3f3c92fa78 --- /dev/null +++ b/sandbox/sebastien/java/sca-node/samples/helloworld-ws-service-webapp/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,45 @@ + + + + + + + Apache Tuscany HelloWorld Web Service Sample + + + org.apache.tuscany.sca.host.webapp.TuscanyContextListener + + + + TuscanyServlet + org.apache.tuscany.sca.host.webapp.TuscanyServlet + + + + TuscanyServlet + /SCA/* + + + + /SCA/HelloWorldComponent/HelloWorldService?wsdl + + + -- cgit v1.2.3