summaryrefslogtreecommitdiffstats
path: root/sandbox/lresende/backup/container.das.client/src/main/webapp/Company.jsp
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/lresende/backup/container.das.client/src/main/webapp/Company.jsp')
-rw-r--r--sandbox/lresende/backup/container.das.client/src/main/webapp/Company.jsp70
1 files changed, 70 insertions, 0 deletions
diff --git a/sandbox/lresende/backup/container.das.client/src/main/webapp/Company.jsp b/sandbox/lresende/backup/container.das.client/src/main/webapp/Company.jsp
new file mode 100644
index 0000000000..9fadd79766
--- /dev/null
+++ b/sandbox/lresende/backup/container.das.client/src/main/webapp/Company.jsp
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!--
+ 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="java.util.*" %>
+
+<%@ page import="org.osoa.sca.CompositeContext" %>
+<%@ page import="org.osoa.sca.CurrentCompositeContext" %>
+
+<%@ page import="commonj.sdo.*" %>
+
+<%@ page import="org.apache.tuscany.samples.das.orders.*" %>
+
+<html>
+<head>
+<%@ page language="java" contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"%>
+<%
+//
+ CompositeContext context = CurrentCompositeContext.getContext();
+ CustomersOrdersService service = context.locateService(CustomersOrdersService.class, "CustomersOrdersComponent");
+ List customers = null;
+ try{
+ DataObject root = service.getAllCustomers(null);
+ customers = root.getList("CUSTOMERS");
+ }catch(Exception e){
+ //TODO: handle case where dasService can't be initiated properly
+ }
+%>
+
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
+<title>DASService Client Test</title>
+</head>
+<body>
+
+<H2>Tuscany DAS Service WEB Client Application Example</H2>
+
+<!-- Do Fill -->
+<table border>
+ <thead>
+ <tr>
+ <th>ID</th>
+ <th>Name</th>
+ </tr>
+ </thead>
+ <tbody>
+
+ </tbody>
+</table>
+
+
+
+</form>
+</body>
+</html>