%@ page contentType="text/html; charset=UTF-8"%> <%@ page import="at.gv.egiz.pdfas.web.servlets.UpdateFormServlet"%> <%@ page import="java.util.Locale" %> <%@ page import="at.gv.egiz.pdfas.api.commons.Constants" %> <%@ page import="at.gv.egiz.pdfas.web.session.VerifySessionInformation"%> <%@ page import="at.gv.egiz.pdfas.web.session.SignSessionInformation" %> <%@ page import="at.gv.egiz.pdfas.web.session.SessionAttributes" %> <%@ include file="language.jsp" %> <% String local_request_url = (String)request.getAttribute("local_request_url"); String data_url = (String) request.getAttribute("data_url"); HttpSessionBindingListener si = (HttpSessionBindingListener) session.getAttribute(SessionAttributes.ATTRIBUTE_SESSION_INFORMATION); Locale locale = (Locale) session.getAttribute(LocaleParamFilter.LOCALE_SESSION_KEY); boolean isExternalInvocation = false; boolean isServerBKU = false; if (si instanceof SignSessionInformation) { SignSessionInformation ssi = (SignSessionInformation) si; isExternalInvocation = ssi.exappinf != null; isServerBKU = Constants.SIGNATURE_DEVICE_MOC.equals(ssi.connector); } else { VerifySessionInformation vsi = (VerifySessionInformation) si; isExternalInvocation = vsi.exappinf != null; isServerBKU = Constants.SIGNATURE_DEVICE_MOC.equals(vsi.connector); } %>