diff options
Diffstat (limited to 'simpleSigning/src/main/webapp/WEB-INF')
-rw-r--r-- | simpleSigning/src/main/webapp/WEB-INF/web.xml | 44 |
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 |