diff options
Diffstat (limited to 'pdf-as-web/src/main/webapp')
-rw-r--r-- | pdf-as-web/src/main/webapp/WEB-INF/web.xml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pdf-as-web/src/main/webapp/WEB-INF/web.xml b/pdf-as-web/src/main/webapp/WEB-INF/web.xml index 85811ff0..8373c195 100644 --- a/pdf-as-web/src/main/webapp/WEB-INF/web.xml +++ b/pdf-as-web/src/main/webapp/WEB-INF/web.xml @@ -88,6 +88,12 @@ <description></description> <servlet-class>at.gv.egiz.pdfas.web.servlets.PDFSignatureCertificateData</servlet-class> </servlet> + <servlet> + <servlet-name>UIEntryPointServlet</servlet-name> + <display-name>UIEntryPointServlet</display-name> + <description></description> + <servlet-class>at.gv.egiz.pdfas.web.servlets.UIEntryPointServlet</servlet-class> + </servlet> <!-- Define mappings that are used by the servlet container to translate a particular request URI (context-relative) to a particular servlet. The @@ -134,6 +140,10 @@ <servlet-name>PDFVerifyCert</servlet-name> <url-pattern>/signCert</url-pattern> </servlet-mapping> + <servlet-mapping> + <servlet-name>UIEntryPointServlet</servlet-name> + <url-pattern>/userentry</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 |