From: Mathieu Baudier Date: Tue, 22 Apr 2008 10:04:25 +0000 (+0000) Subject: First end-to-end SlcExecution with web service X-Git-Tag: argeo-slc-2.1.7~3017 X-Git-Url: http://git.argeo.org/?a=commitdiff_plain;h=38087bceeb3d6bd73fb6942c9d7bfd6a7d0abca5;p=gpl%2Fargeo-slc.git First end-to-end SlcExecution with web service git-svn-id: https://svn.argeo.org/slc/trunk@1023 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc --- diff --git a/org.argeo.slc.webapp/src/main/webapp/WEB-INF/applicationContext.xml b/org.argeo.slc.webapp/src/main/webapp/WEB-INF/applicationContext.xml new file mode 100644 index 000000000..7e429ad6b --- /dev/null +++ b/org.argeo.slc.webapp/src/main/webapp/WEB-INF/applicationContext.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/org.argeo.slc.webapp/src/main/webapp/WEB-INF/jsp/home.jsp b/org.argeo.slc.webapp/src/main/webapp/WEB-INF/jsp/home.jsp index c1b0252b5..1dcb0db6a 100644 --- a/org.argeo.slc.webapp/src/main/webapp/WEB-INF/jsp/home.jsp +++ b/org.argeo.slc.webapp/src/main/webapp/WEB-INF/jsp/home.jsp @@ -9,7 +9,12 @@

SLC Home

-WSDL Definiton +

Web

+SLC Executions + +

Web Services

+WSDL Definition +
<%@include file="footer.txt"%> \ No newline at end of file diff --git a/org.argeo.slc.webapp/src/main/webapp/WEB-INF/jsp/slcExecutionList.jsp b/org.argeo.slc.webapp/src/main/webapp/WEB-INF/jsp/slcExecutionList.jsp new file mode 100644 index 000000000..16ec29560 --- /dev/null +++ b/org.argeo.slc.webapp/src/main/webapp/WEB-INF/jsp/slcExecutionList.jsp @@ -0,0 +1,23 @@ + +<%@ page language="java" contentType="text/html; charset=ISO-8859-1" + pageEncoding="ISO-8859-1"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> + +<%@include file="header.txt"%> + + +
+

SLC Execution List

+ + + + + + + + +
${slcExecution.uuid}${slcExecution.status}
+ +
+ +<%@include file="footer.txt"%> \ No newline at end of file diff --git a/org.argeo.slc.webapp/src/main/webapp/WEB-INF/slc-web-servlet.xml b/org.argeo.slc.webapp/src/main/webapp/WEB-INF/slc-web-servlet.xml index 98283b768..6b5b425d6 100644 --- a/org.argeo.slc.webapp/src/main/webapp/WEB-INF/slc-web-servlet.xml +++ b/org.argeo.slc.webapp/src/main/webapp/WEB-INF/slc-web-servlet.xml @@ -10,6 +10,12 @@ + + + + + diff --git a/org.argeo.slc.webapp/src/main/webapp/WEB-INF/slc-ws-servlet.xml b/org.argeo.slc.webapp/src/main/webapp/WEB-INF/slc-ws-servlet.xml index 723587138..78df3eac0 100644 --- a/org.argeo.slc.webapp/src/main/webapp/WEB-INF/slc-ws-servlet.xml +++ b/org.argeo.slc.webapp/src/main/webapp/WEB-INF/slc-ws-servlet.xml @@ -5,6 +5,7 @@ + diff --git a/org.argeo.slc.webapp/src/main/webapp/WEB-INF/web.xml b/org.argeo.slc.webapp/src/main/webapp/WEB-INF/web.xml index be80877ed..85b87a247 100644 --- a/org.argeo.slc.webapp/src/main/webapp/WEB-INF/web.xml +++ b/org.argeo.slc.webapp/src/main/webapp/WEB-INF/web.xml @@ -1,28 +1,45 @@ - - - - SLC Web Application - - - slc-ws - org.springframework.ws.transport.http.MessageDispatcherServlet - - - - slc-ws - /slcService/* - - - - slc-web - org.springframework.web.servlet.DispatcherServlet - - - - slc-web - *.web - - - + + + + SLC Web Application + + + slc-ws + + org.springframework.ws.transport.http.MessageDispatcherServlet + + + + + slc-ws + /slcService/* + + + + slc-web + + org.springframework.web.servlet.DispatcherServlet + + + + + slc-web + *.web + + + + contextConfigLocation + /WEB-INF/applicationContext.xml + + + + + org.springframework.web.context.ContextLoaderListener + + + + +