Author: antelder
Date: Tue Jun 22 12:56:09 2010
New Revision: 956869
URL: http://svn.apache.org/viewvc?rev=956869&view=rev
Log:
TUSCANY-3517: Commit zip for new test callback sample for Florians GSoC project
Added:
tuscany/sca-java-2.x/contrib/samples/servlet-callback/
tuscany/sca-java-2.x/contrib/samples/servlet-callback/README (with props)
tuscany/sca-java-2.x/contrib/samples/servlet-callback/pom.xml (with props)
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/CallbackServlet.java
(with props)
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldService.java
(with props)
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldServiceImpl.java
(with props)
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldServlet.java
(with props)
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/WEB-INF/
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/WEB-INF/web.composite
(with props)
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/WEB-INF/web.xml
(with props)
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/hello.html
(with props)
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/test/
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/test/java/
Added: tuscany/sca-java-2.x/contrib/samples/servlet-callback/README
URL:
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/contrib/samples/servlet-callback/README?rev=956869&view=auto
==============================================================================
--- tuscany/sca-java-2.x/contrib/samples/servlet-callback/README (added)
+++ tuscany/sca-java-2.x/contrib/samples/servlet-callback/README Tue Jun 22
12:56:09 2010
@@ -0,0 +1,7 @@
+The README in the <distribution-unpack-dir>/samples directory provides
+general instructions about building and running samples. (where
+distribution-unpack-dir is the directory in which you unpacked the tuscany
+binary distribution archive). Take a look there first (noting at you read it
that this sample
+is not a new style sample).
+
+TODO - finish
\ No newline at end of file
Propchange: tuscany/sca-java-2.x/contrib/samples/servlet-callback/README
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: tuscany/sca-java-2.x/contrib/samples/servlet-callback/README
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: tuscany/sca-java-2.x/contrib/samples/servlet-callback/pom.xml
URL:
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/contrib/samples/servlet-callback/pom.xml?rev=956869&view=auto
==============================================================================
--- tuscany/sca-java-2.x/contrib/samples/servlet-callback/pom.xml (added)
+++ tuscany/sca-java-2.x/contrib/samples/servlet-callback/pom.xml Tue Jun 22
12:56:09 2010
@@ -0,0 +1,105 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * 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.
+-->
+<project>
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-sca</artifactId>
+ <version>2.0-SNAPSHOT</version>
+ <relativePath>../../pom.xml</relativePath>
+ </parent>
+
+ <artifactId>sample-helloworld-servlet-webapp</artifactId>
+ <packaging>war</packaging>
+ <name>Apache Tuscany SCA Sample Helloworld Servlet</name>
+
+ <dependencies>
+
+ <dependency>
+ <groupId>org.apache.tuscany.sca.shades</groupId>
+ <artifactId>tuscany-base-nodep</artifactId>
+ <version>2.0-SNAPSHOT</version>
+ </dependency>
+
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.5</version>
+ <scope>provided</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.8.1</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>net.sourceforge.htmlunit</groupId>
+ <artifactId>htmlunit</artifactId>
+ <version>2.6</version>
+ <scope>test</scope>
+ </dependency>
+
+ </dependencies>
+
+ <build>
+ <finalName>helloworld-servlet</finalName>
+ <plugins>
+ <plugin>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>maven-jetty-plugin</artifactId>
+ <version>6.1.18</version>
+ <configuration>
+ <contextPath>helloworld-servlet</contextPath>
+ <stopKey>foo</stopKey>
+ <stopPort>9999</stopPort>
+ </configuration>
+ <executions>
+ <execution>
+ <id>start-jetty</id>
+ <phase>process-test-classes</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <scanIntervalSeconds>0</scanIntervalSeconds>
+ <daemon>true</daemon>
+ <connectors>
+ <connector
implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+ <port>8085</port>
+ </connector>
+ </connectors>
+ </configuration>
+ </execution>
+ <execution>
+ <id>stop-jetty</id>
+ <phase>prepare-package</phase>
+ <goals>
+ <goal>stop</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
+
Propchange: tuscany/sca-java-2.x/contrib/samples/servlet-callback/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: tuscany/sca-java-2.x/contrib/samples/servlet-callback/pom.xml
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange: tuscany/sca-java-2.x/contrib/samples/servlet-callback/pom.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Added:
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/CallbackServlet.java
URL:
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/CallbackServlet.java?rev=956869&view=auto
==============================================================================
---
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/CallbackServlet.java
(added)
+++
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/CallbackServlet.java
Tue Jun 22 12:56:09 2010
@@ -0,0 +1,10 @@
+package sample;
+
+import org.oasisopen.sca.annotation.Remotable;
+
+...@remotable
+public interface CallbackServlet {
+
+ void sendGreeting(String greeting);
+
+}
Propchange:
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/CallbackServlet.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/CallbackServlet.java
------------------------------------------------------------------------------
svn:keywords = Rev Date
Added:
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldService.java
URL:
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldService.java?rev=956869&view=auto
==============================================================================
---
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldService.java
(added)
+++
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldService.java
Tue Jun 22 12:56:09 2010
@@ -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 sample;
+
+import org.oasisopen.sca.annotation.Callback;
+import org.oasisopen.sca.annotation.Remotable;
+
+...@remotable
+...@callback(CallbackServlet.class)
+public interface HelloworldService {
+
+ void sayHello(String name);
+
+}
Propchange:
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldService.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldService.java
------------------------------------------------------------------------------
svn:keywords = Rev Date
Added:
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldServiceImpl.java
URL:
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldServiceImpl.java?rev=956869&view=auto
==============================================================================
---
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldServiceImpl.java
(added)
+++
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldServiceImpl.java
Tue Jun 22 12:56:09 2010
@@ -0,0 +1,34 @@
+/*
+ * 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.oasisopen.sca.annotation.Callback;
+import org.oasisopen.sca.annotation.Service;
+
+...@service(HelloworldService.class)
+public class HelloworldServiceImpl implements HelloworldService {
+
+ @Callback
+ private CallbackServlet callback;
+
+ public void sayHello(String name) {
+ callback.sendGreeting("Hello " + name + "!");
+ }
+
+}
Propchange:
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldServiceImpl.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldServiceImpl.java
------------------------------------------------------------------------------
svn:keywords = Rev Date
Added:
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldServlet.java
URL:
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldServlet.java?rev=956869&view=auto
==============================================================================
---
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldServlet.java
(added)
+++
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldServlet.java
Tue Jun 22 12:56:09 2010
@@ -0,0 +1,78 @@
+/*
+ * 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 java.io.IOException;
+import java.io.Writer;
+
+import javax.servlet.ServletConfig;
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+
+import org.oasisopen.sca.ComponentContext;
+import org.oasisopen.sca.annotation.Reference;
+import org.oasisopen.sca.annotation.Service;
+
+...@service(CallbackServlet.class)
+public class HelloworldServlet extends HttpServlet implements CallbackServlet {
+ private static final long serialVersionUID = 1L;
+
+ private HttpServletResponse response;
+
+ @Reference
+ protected HelloworldService service;
+
+ @Override
+ public void init(ServletConfig servletConfig) throws ServletException {
+ if (service == null) {
+ System.out
+ .println("HelloworldServlet reference
injection failed, using ComponentContext");
+ ComponentContext cc = (ComponentContext) servletConfig
+ .getServletContext().getAttribute(
+
"org.oasisopen.sca.ComponentContext");
+ service = cc.getService(HelloworldService.class,
"service");
+ }
+ }
+
+ @Override
+ protected void service(HttpServletRequest request,
+ HttpServletResponse response) throws IOException {
+ this.response = response;
+ String name = request.getParameter("name");
+ service.sayHello(name);
+ }
+
+ @Override
+ public void sendGreeting(String greeting) {
+ try {
+ Writer out = response.getWriter();
+ out
+ .write("<html><head><title>Apache
Tuscany Helloworld Servlet Sample</title></head><body>");
+ out.write("<h2>Apache Tuscany Helloworld Servlet
Sample</h2>");
+ out.write("<br><strong>Result: </strong>" + greeting);
+ out.write("</body></html>");
+ out.flush();
+ out.close();
+ } catch (IOException e) {
+ // ignore
+ }
+ }
+}
Propchange:
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldServlet.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/java/sample/HelloworldServlet.java
------------------------------------------------------------------------------
svn:keywords = Rev Date
Added:
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/WEB-INF/web.composite
URL:
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/WEB-INF/web.composite?rev=956869&view=auto
==============================================================================
---
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/WEB-INF/web.composite
(added)
+++
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/WEB-INF/web.composite
Tue Jun 22 12:56:09 2010
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * 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.
+-->
+<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200912"
+ xmlns:tuscany="http://tuscany.apache.org/xmlns/sca/1.1"
+ targetNamespace="http://samples"
+ name="Helloworld">
+
+ <component name="foo">
+ <implementation.web web-uri=""/>
+ <reference name="service" target="HelloworldComponent">
+ <java.interface interface="HelloworldService"
callbackInterface="CallbackServlet"/>
+ </reference>
+ </component>
+
+ <component name="HelloworldComponent">
+ <implementation.java class="sample.HelloworldServiceImpl"/>
+ </component>
+
+</composite>
Propchange:
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/WEB-INF/web.composite
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/WEB-INF/web.composite
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange:
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/WEB-INF/web.composite
------------------------------------------------------------------------------
svn:mime-type = text/xml
Added:
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/WEB-INF/web.xml
URL:
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/WEB-INF/web.xml?rev=956869&view=auto
==============================================================================
---
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/WEB-INF/web.xml
(added)
+++
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/WEB-INF/web.xml
Tue Jun 22 12:56:09 2010
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * 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.
+-->
+<web-app version="2.4"
+ xmlns="http://java.sun.com/xml/ns/j2ee"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" >
+
+ <display-name>Apache Tuscany Helloworld Servlet Sample</display-name>
+
+
<listener><listener-class>org.apache.tuscany.sca.host.webapp.TuscanyContextListener</listener-class></listener>
+
+ <servlet>
+ <servlet-name>HelloworldServlet</servlet-name>
+ <servlet-class>sample.HelloworldServlet</servlet-class>
+ </servlet>
+
+ <servlet-mapping>
+ <servlet-name>HelloworldServlet</servlet-name>
+ <url-pattern>/HelloworldServlet</url-pattern>
+ </servlet-mapping>
+
+ <welcome-file-list id="WelcomeFileList">
+ <welcome-file>hello.html</welcome-file>
+ </welcome-file-list>
+
+</web-app>
+
Propchange:
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/WEB-INF/web.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/WEB-INF/web.xml
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange:
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/WEB-INF/web.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Added:
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/hello.html
URL:
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/hello.html?rev=956869&view=auto
==============================================================================
---
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/hello.html
(added)
+++
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/hello.html
Tue Jun 22 12:56:09 2010
@@ -0,0 +1,46 @@
+<!--
+ * 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>
+
+<form action="HelloworldServlet" method="post">
+ <table>
+ <tr>
+ <td>Enter your name:</td>
+ <td>
+ <input type="text" name="name" width="10">
+ </td>
+ </tr>
+ <tr>
+ <td align="left" colspan="2">
+ <button name="submit" type="submit">Say hello</button>
+ </td>
+ </tr>
+ </table>
+</form>
+
+</body>
+</html>
\ No newline at end of file
Propchange:
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/hello.html
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/hello.html
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange:
tuscany/sca-java-2.x/contrib/samples/servlet-callback/src/main/webapp/hello.html
------------------------------------------------------------------------------
svn:mime-type = text/html