summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.5/samples/store-webapp/src/main/webapp/WEB-INF/web.xml
diff options
context:
space:
mode:
Diffstat (limited to 'branches/sca-java-1.5/samples/store-webapp/src/main/webapp/WEB-INF/web.xml')
-rw-r--r--branches/sca-java-1.5/samples/store-webapp/src/main/webapp/WEB-INF/web.xml18
1 files changed, 18 insertions, 0 deletions
diff --git a/branches/sca-java-1.5/samples/store-webapp/src/main/webapp/WEB-INF/web.xml b/branches/sca-java-1.5/samples/store-webapp/src/main/webapp/WEB-INF/web.xml
new file mode 100644
index 0000000000..cfe63f359e
--- /dev/null
+++ b/branches/sca-java-1.5/samples/store-webapp/src/main/webapp/WEB-INF/web.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
+ <display-name>sample-store-secure-webapp</display-name>
+
+ <filter>
+ <filter-name>tuscany</filter-name>
+ <filter-class>org.apache.tuscany.sca.host.webapp.TuscanyServletFilter</filter-class>
+ </filter>
+
+ <filter-mapping>
+ <filter-name>tuscany</filter-name>
+ <url-pattern>/*</url-pattern>
+ </filter-mapping>
+
+ <welcome-file-list id="WelcomeFileList">
+ <welcome-file>store.html</welcome-file>
+ </welcome-file-list>
+</web-app> \ No newline at end of file