summaryrefslogtreecommitdiffstats
path: root/sandbox/rfeng/geronimo-demo/webs/WebContent
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/rfeng/geronimo-demo/webs/WebContent')
-rw-r--r--sandbox/rfeng/geronimo-demo/webs/WebContent/META-INF/MANIFEST.MF2
-rw-r--r--sandbox/rfeng/geronimo-demo/webs/WebContent/WEB-INF/geronimo-web.xml21
-rw-r--r--sandbox/rfeng/geronimo-demo/webs/WebContent/WEB-INF/web.xml33
-rw-r--r--sandbox/rfeng/geronimo-demo/webs/WebContent/index.jsp58
4 files changed, 114 insertions, 0 deletions
diff --git a/sandbox/rfeng/geronimo-demo/webs/WebContent/META-INF/MANIFEST.MF b/sandbox/rfeng/geronimo-demo/webs/WebContent/META-INF/MANIFEST.MF
new file mode 100644
index 0000000000..58630c02ef
--- /dev/null
+++ b/sandbox/rfeng/geronimo-demo/webs/WebContent/META-INF/MANIFEST.MF
@@ -0,0 +1,2 @@
+Manifest-Version: 1.0
+
diff --git a/sandbox/rfeng/geronimo-demo/webs/WebContent/WEB-INF/geronimo-web.xml b/sandbox/rfeng/geronimo-demo/webs/WebContent/WEB-INF/geronimo-web.xml
new file mode 100644
index 0000000000..215f8e759d
--- /dev/null
+++ b/sandbox/rfeng/geronimo-demo/webs/WebContent/WEB-INF/geronimo-web.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<web-app xmlns="http://geronimo.apache.org/xml/ns/j2ee/web-1.2">
+ <dep:environment xmlns:dep="http://geronimo.apache.org/xml/ns/deployment-1.2">
+ <dep:moduleId>
+ <dep:groupId>org.apache.tuscany.samples</dep:groupId>
+ <dep:artifactId>sample-geronimo-webs</dep:artifactId>
+ <dep:version>1.0-incubating-SNAPSHOT</dep:version>
+ <dep:type>war</dep:type>
+ </dep:moduleId>
+ <dep:dependencies>
+ <dep:dependency>
+ <dep:groupId>org.apache.geronimo.configs</dep:groupId>
+ <dep:artifactId>geronimo-tuscany-plugin</dep:artifactId>
+ <dep:version>1.0-incubating-SNAPSHOT</dep:version>
+ <dep:type>car</dep:type>
+ </dep:dependency>
+ </dep:dependencies>
+ <dep:hidden-classes />
+ <dep:non-overridable-classes />
+ </dep:environment>
+</web-app> \ No newline at end of file
diff --git a/sandbox/rfeng/geronimo-demo/webs/WebContent/WEB-INF/web.xml b/sandbox/rfeng/geronimo-demo/webs/WebContent/WEB-INF/web.xml
new file mode 100644
index 0000000000..8e2ae22d9c
--- /dev/null
+++ b/sandbox/rfeng/geronimo-demo/webs/WebContent/WEB-INF/web.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+ * 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.
+-->
+
+<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web
+Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
+<web-app>
+
+ <display-name>Tuscany BigBank Service Sample</display-name>
+
+ <welcome-file-list id="WelcomeFileList">
+ <welcome-file>index.jsp</welcome-file>
+ </welcome-file-list>
+
+
+
+</web-app>
diff --git a/sandbox/rfeng/geronimo-demo/webs/WebContent/index.jsp b/sandbox/rfeng/geronimo-demo/webs/WebContent/index.jsp
new file mode 100644
index 0000000000..2748718ffe
--- /dev/null
+++ b/sandbox/rfeng/geronimo-demo/webs/WebContent/index.jsp
@@ -0,0 +1,58 @@
+<%--
+ * 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.
+--%>
+
+<%@ page import="org.apache.tuscany.sca.host.embedded.SCADomain"%>
+<%@ page import="bigbank.accountdata.AccountService"%>
+<%@page import="java.util.Date"%>
+
+<%@ page contentType="text/html;charset=UTF-8" language="java"%>
+<%
+try {
+%>
+<%
+ org.apache.geronimo.kernel.Kernel kernel = org.apache.geronimo.kernel.KernelRegistry.getSingleKernel();
+ SCADomain domain =
+ ((org.apache.geronimo.tuscany.EmbeddedSCADomainGBean)kernel
+ .getGBean(org.apache.geronimo.tuscany.EmbeddedSCADomainGBean.class)).getScaDomain();
+ AccountService accountService = domain.getService(AccountService.class, "AccountServiceComponent");
+%>
+<html>
+<head>
+<title>BigBank Sample</title>
+</head>
+
+<body>
+<table>
+ <tr>
+ <th>Date</th>
+ <th>Account Report</th>
+ </tr>
+ <tr>
+ <td><%=new Date()%></td>
+ <td><%=accountService.getAccountReport("foo")%></td>
+ </tr>
+
+</table>
+</body>
+</html>
+<%
+ } catch (Throwable e) {
+ e.printStackTrace();
+ }
+%>