aboutsummaryrefslogtreecommitdiff
path: root/simpleSigning/src/main/webapp/WEB-INF/web.xml
diff options
context:
space:
mode:
authorAndreas Fitzek <andreas.fitzek@iaik.tugraz.at>2014-07-22 10:14:21 +0200
committerAndreas Fitzek <andreas.fitzek@iaik.tugraz.at>2014-07-22 10:14:21 +0200
commitcdfd4153809a9f1f5fed903b06e19f92cdd10d1a (patch)
treeec379abc5c90d5992f91314c4c49a28d0a4845a1 /simpleSigning/src/main/webapp/WEB-INF/web.xml
parent88f8892f2d51727df6764b97d4facaf93ab3f9a6 (diff)
downloadeinfach-signieren-cdfd4153809a9f1f5fed903b06e19f92cdd10d1a.tar.gz
einfach-signieren-cdfd4153809a9f1f5fed903b06e19f92cdd10d1a.tar.bz2
einfach-signieren-cdfd4153809a9f1f5fed903b06e19f92cdd10d1a.zip
einfach Signieren first commit
Diffstat (limited to 'simpleSigning/src/main/webapp/WEB-INF/web.xml')
-rw-r--r--simpleSigning/src/main/webapp/WEB-INF/web.xml44
1 files changed, 44 insertions, 0 deletions
diff --git a/simpleSigning/src/main/webapp/WEB-INF/web.xml b/simpleSigning/src/main/webapp/WEB-INF/web.xml
new file mode 100644
index 0000000..83c9904
--- /dev/null
+++ b/simpleSigning/src/main/webapp/WEB-INF/web.xml
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!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>
+ <!-- General description of your web application -->
+
+ <display-name>Simple Signing</display-name>
+ <description>Simple Signing Application</description>
+
+ <servlet>
+ <servlet-name>PDFASJsServlet</servlet-name>
+ <display-name>PDFASJsServlet</display-name>
+ <description></description>
+ <servlet-class>at.gv.egiz.simpleSigning.PDFASJsServlet</servlet-class>
+ <load-on-startup>0</load-on-startup>
+ </servlet>
+
+ <!-- Define mappings that are used by the servlet container to translate
+ a particular request URI (context-relative) to a particular servlet. The
+ examples below correspond to the servlet descriptions above. Thus, a request
+ URI like: http://localhost:8080/{contextpath}/graph will be mapped to the
+ "graph" servlet, while a request like: http://localhost:8080/{contextpath}/saveCustomer.do
+ will be mapped to the "controller" servlet. You may define any number of
+ servlet mappings, including zero. It is also legal to define more than one
+ mapping for the same servlet, if you wish to. -->
+
+ <servlet-mapping>
+ <servlet-name>PDFASJsServlet</servlet-name>
+ <url-pattern>/pdfas.js</url-pattern>
+ </servlet-mapping>
+ <!-- Define the default session timeout for your application, in minutes.
+ From a servlet or JSP page, you can modify the timeout for a particular session
+ dynamically by using HttpSession.getMaxInactiveInterval(). -->
+
+ <session-config>
+ <session-timeout>30</session-timeout> <!-- 30 minutes -->
+ </session-config>
+
+ <welcome-file-list>
+ <welcome-file>index.jsp</welcome-file>
+ </welcome-file-list>
+
+</web-app> \ No newline at end of file