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/chat-webapp/pom.xml | 67 ++++++++++++++++++++++ .../src/main/java/sample/ChatService.java | 28 +++++++++ .../src/main/java/sample/ChatServiceImpl.java | 36 ++++++++++++ .../chat-webapp/src/main/resources/chat.composite | 37 ++++++++++++ .../src/main/webapp/META-INF/sca-contribution.xml | 22 +++++++ .../chat-webapp/src/main/webapp/WEB-INF/web.xml | 42 ++++++++++++++ .../samples/chat-webapp/src/main/webapp/chat.html | 52 +++++++++++++++++ 7 files changed, 284 insertions(+) create mode 100644 tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/pom.xml create mode 100644 tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/src/main/java/sample/ChatService.java create mode 100644 tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/src/main/java/sample/ChatServiceImpl.java create mode 100644 tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/src/main/resources/chat.composite create mode 100644 tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/src/main/webapp/META-INF/sca-contribution.xml create mode 100644 tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/src/main/webapp/WEB-INF/web.xml create mode 100644 tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/src/main/webapp/chat.html (limited to 'tags/java/sca/0.91-rc1-incubating/samples/chat-webapp') diff --git a/tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/pom.xml b/tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/pom.xml new file mode 100644 index 0000000000..41987963ab --- /dev/null +++ b/tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/pom.xml @@ -0,0 +1,67 @@ + + + + 4.0.0 + + org.apache.tuscany.sca + tuscany-sca + 0.91-incubating + ../../pom.xml + + sample-chat-webapp + war + Apache Tuscany Chat Sample WebApp + + + + apache.incubator + http://people.apache.org/repo/m2-incubating-repository + + + + + + + org.apache.tuscany.sca + tuscany-host-webapp + 0.91-incubating + + + + org.apache.tuscany.sca + tuscany-binding-ajax + 0.91-incubating + runtime + + + + org.apache.tuscany.sca + tuscany-implementation-java-runtime + 0.91-incubating + runtime + + + + + + ${artifactId} + + + diff --git a/tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/src/main/java/sample/ChatService.java b/tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/src/main/java/sample/ChatService.java new file mode 100644 index 0000000000..1fb9d292cd --- /dev/null +++ b/tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/src/main/java/sample/ChatService.java @@ -0,0 +1,28 @@ +/** + * + * Copyright 2005 The Apache Software Foundation or its licensors, as applicable. + * + * Licensed 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 sample; + +import org.osoa.sca.annotations.Remotable; +import org.osoa.sca.annotations.Service; + +@Service +@Remotable +public interface ChatService { + + public void chat(String msg); + +} diff --git a/tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/src/main/java/sample/ChatServiceImpl.java b/tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/src/main/java/sample/ChatServiceImpl.java new file mode 100644 index 0000000000..7d0bfb3307 --- /dev/null +++ b/tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/src/main/java/sample/ChatServiceImpl.java @@ -0,0 +1,36 @@ +/* + * 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 sample; + +import org.osoa.sca.annotations.Scope; + +@Scope("COMPOSITE") +public class ChatServiceImpl implements ChatService { + + ChatService chatters; + + public void chat(String msg) { + chatters.chat(msg); + } + + public void setChatters(ChatService chatters) { + this.chatters = chatters; + } +} diff --git a/tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/src/main/resources/chat.composite b/tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/src/main/resources/chat.composite new file mode 100644 index 0000000000..3ee7716899 --- /dev/null +++ b/tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/src/main/resources/chat.composite @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + diff --git a/tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/src/main/webapp/META-INF/sca-contribution.xml b/tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/src/main/webapp/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..b897ddef76 --- /dev/null +++ b/tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/src/main/webapp/META-INF/sca-contribution.xml @@ -0,0 +1,22 @@ + + + + + \ No newline at end of file diff --git a/tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/src/main/webapp/WEB-INF/web.xml b/tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000000..998d54bae5 --- /dev/null +++ b/tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,42 @@ + + + + + + Tuscany Chat Sample + + + + org.apache.tuscany.sca.webapp.TuscanyContextListener + + + + TuscanyServlet + org.apache.tuscany.sca.webapp.TuscanyServlet + + + + TuscanyServlet + /SCA/* + + + + chat.html + + + diff --git a/tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/src/main/webapp/chat.html b/tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/src/main/webapp/chat.html new file mode 100644 index 0000000000..551d3ad28d --- /dev/null +++ b/tags/java/sca/0.91-rc1-incubating/samples/chat-webapp/src/main/webapp/chat.html @@ -0,0 +1,52 @@ + + + Tuscany AJAX Chat Sample + + + + + + + + +

Tuscany AJAX Chat Sample

+ + A simple client to chat between multiple web browsers:

+ + Nickname: +

+ + Enter text: + + +

+
+ + + -- cgit v1.2.3