From 0184c140614b99a5037cbd8f969b7512888cd37d Mon Sep 17 00:00:00 2001 From: knowcenter Date: Thu, 17 May 2007 15:25:10 +0000 Subject: webapp git-svn-id: https://joinup.ec.europa.eu/svn/pdf-as/trunk@86 7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c --- webapp/jsp/results.jsp | 96 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 webapp/jsp/results.jsp (limited to 'webapp/jsp/results.jsp') diff --git a/webapp/jsp/results.jsp b/webapp/jsp/results.jsp new file mode 100644 index 0000000..833c35a --- /dev/null +++ b/webapp/jsp/results.jsp @@ -0,0 +1,96 @@ +<%@ page contentType="text/html; charset=UTF-8" %> +<%@ page import="java.util.List" %> +<%@ page import="java.util.Iterator" %> +<%@ page import="at.knowcenter.wag.egov.egiz.sig.SignatureResponse" %> +<% + List results = (List) request.getAttribute("results"); + Object bb = request.getAttribute("backbutton"); + boolean backbutton = true; + if (bb != null && bb.equals("false")) + { + backbutton = false; + } +%> + + + + + PDF-AS Amtssignaturen Resultat + + + +
+

PDF-AS Amtssignaturen

+
+
Resultat
+ +
+<% + Iterator resit = results.iterator(); + while (resit.hasNext()) + { + SignatureResponse result = (SignatureResponse) resit.next(); +%> + + + + +
Zertifikat + + + + + +<% + List public_properties = result.getPublicProperties(); + Iterator propit = public_properties.iterator(); + while (propit.hasNext()) + { + String public_property = (String) propit.next(); +%> + +<% + } +%> + + +
Signator:<%= result.getX509SubjectName() %>
Aussteller:<%= result.getX509IssuerName() %>
Seriennummer:<%= result.getX509SerialNumber() %>
Eigenschaft:<%= public_property %>
Zertifikat:<%= result.getCertificateCheckInfo() %>
+
+
Signatur-Check +
<%= result.getSignatureCheckInfo() %>
+
+
Manifest-Check +
<%= result.getSignatureManifestCheckInfo() %>
+
+ + + + + +<% + if (resit.hasNext()) + { +%> +
+<% + } + } +%> +
+ +
+<% + if (backbutton) + { +%> +zurück +<% + } +%> +
+ + + + + + -- cgit v1.2.3