diff options
author | clemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2009-04-03 15:04:26 +0000 |
---|---|---|
committer | clemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2009-04-03 15:04:26 +0000 |
commit | 78728a96af022bae87e4d0d11855f420736d87b7 (patch) | |
tree | ee855aba3e8bbc988f72c361406c2c0013f8030a /BKUOnline/src/main/webapp/WEB-INF/web.xml | |
parent | 2dbf2347bc78fd835c857ad438514fb6251f6f7a (diff) | |
download | mocca-78728a96af022bae87e4d0d11855f420736d87b7.tar.gz mocca-78728a96af022bae87e4d0d11855f420736d87b7.tar.bz2 mocca-78728a96af022bae87e4d0d11855f420736d87b7.zip |
applet dispatcher (prevent applet caching)
git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@326 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
Diffstat (limited to 'BKUOnline/src/main/webapp/WEB-INF/web.xml')
-rw-r--r-- | BKUOnline/src/main/webapp/WEB-INF/web.xml | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/BKUOnline/src/main/webapp/WEB-INF/web.xml b/BKUOnline/src/main/webapp/WEB-INF/web.xml index 1a9b7d78..2987ac57 100644 --- a/BKUOnline/src/main/webapp/WEB-INF/web.xml +++ b/BKUOnline/src/main/webapp/WEB-INF/web.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> - <!-- +<!-- Copyright 2008 Federal Chancellery Austria and Graz University of Technology Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the @@ -12,9 +12,7 @@ the specific language governing permissions and limitations under the License. --> -<web-app id="bkuonline" version="2.5" - xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> +<web-app id="bkuonline" version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> <display-name>http-security-layer-request</display-name> <!-- Begin Spring Config --> @@ -53,6 +51,10 @@ <jsp-file>/applet.jsp</jsp-file> </servlet> <servlet> + <servlet-name>AppletDispatcher</servlet-name> + <servlet-class>at.gv.egiz.bku.online.webapp.AppletDispatcher</servlet-class> + </servlet> + <servlet> <servlet-name>BKUAppletAlternative</servlet-name> <jsp-file>/appletAlternative.jsp</jsp-file> </servlet> @@ -76,6 +78,10 @@ <servlet-name>help</servlet-name> <url-pattern>/help/*</url-pattern> </servlet-mapping> + <servlet-mapping> + <servlet-name>AppletDispatcher</servlet-name> + <url-pattern>/applet/dispatch/*</url-pattern> + </servlet-mapping> <!-- End BKU Config --> @@ -106,4 +112,4 @@ <session-config> <session-timeout>5</session-timeout> </session-config> -</web-app>
\ No newline at end of file +</web-app> |