summaryrefslogtreecommitdiff
path: root/BKULocal/src/main/webapp
diff options
context:
space:
mode:
authorclemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4>2009-08-20 16:24:55 +0000
committerclemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4>2009-08-20 16:24:55 +0000
commit22001c93bca360d1b15c252cb22d2a4147ff350d (patch)
tree813f8cd7e0afa47a78ecc40cc8884eb770b89588 /BKULocal/src/main/webapp
parent2bd3c3e61966cf136d39826b6e1c6ff9fc946cef (diff)
downloadmocca-22001c93bca360d1b15c252cb22d2a4147ff350d.tar.gz
mocca-22001c93bca360d1b15c252cb22d2a4147ff350d.tar.bz2
mocca-22001c93bca360d1b15c252cb22d2a4147ff350d.zip
[#430] Activation/PIN-management in MOCCA Web Start
- new Modules: smccSTALExt, BKUGuiExt in order not to depend on BKUAppletExt in BKULocal - provide stal-request handler de-registration in abstractSMCCSTAL git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@448 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
Diffstat (limited to 'BKULocal/src/main/webapp')
-rw-r--r--BKULocal/src/main/webapp/WEB-INF/web.xml10
-rw-r--r--BKULocal/src/main/webapp/index.html7
2 files changed, 15 insertions, 2 deletions
diff --git a/BKULocal/src/main/webapp/WEB-INF/web.xml b/BKULocal/src/main/webapp/WEB-INF/web.xml
index 8e696570..83f33d9e 100644
--- a/BKULocal/src/main/webapp/WEB-INF/web.xml
+++ b/BKULocal/src/main/webapp/WEB-INF/web.xml
@@ -40,6 +40,10 @@
<servlet-name>help</servlet-name>
<jsp-file>/help.jsp</jsp-file>
</servlet>
+ <servlet>
+ <servlet-name>PINManagementServlet</servlet-name>
+ <servlet-class>at.gv.egiz.bku.local.webapp.PINManagementServlet</servlet-class>
+ </servlet>
<servlet-mapping>
<servlet-name>BKUServlet</servlet-name>
<url-pattern>/http-security-layer-request</url-pattern>
@@ -53,7 +57,11 @@
<url-pattern>/help/*</url-pattern>
</servlet-mapping>
<!-- Begin BKU Config -->
-
+
+ <servlet-mapping>
+ <servlet-name>PINManagementServlet</servlet-name>
+ <url-pattern>/PINManagement</url-pattern>
+ </servlet-mapping>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
diff --git a/BKULocal/src/main/webapp/index.html b/BKULocal/src/main/webapp/index.html
index 215eec80..537c154a 100644
--- a/BKULocal/src/main/webapp/index.html
+++ b/BKULocal/src/main/webapp/index.html
@@ -23,7 +23,12 @@
</head>
<body>
<h1>BKU Web Start - Willkommen</h1>
- <p>Diese Seite installiert das MOCCA Zertifikat in ihrem Browser.
+ <div>
+ <p>Diese Seite installiert das MOCCA Zertifikat in ihrem Browser.
In jedem weiteren Browser können sie dieses durch Aufruf <a href="https://localhost:3496/index.html">dieser Seite</a> ebenso installieren.</p>
+ </div>
+ <div>
+ <a href="PINManagement?redirect=./index.html">PIN Verwaltung</a>
+ </div>
</body>
</html>