Blame | Last modification | View Log | Download | RSS feed
<%@page isErrorPage="true" contentType="text/html" autoFlush="true" import="java.util.*" %>
<html lang="it">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>SIGMA TER ERRORE</title>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
<meta content="it" http-equiv="Content-Language"/>
<style type="text/css" media="screen, print">
@import "css/s3Main.css";
</style>
<link rel="stylesheet" type="text/css" href="css/s3MainNormale.css" title="normale" media="screen, print"/>
<link rel="alternate stylesheet" type="text/css" href="css/s3MainPiccolo.css" title="piccolo" media="screen, print"/>
<link rel="alternate stylesheet" type="text/css" href="css/s3MainGrande.css" title="grande" media="screen, print"/>
<link rel="stylesheet" type="text/css" href="css/s3Print.css" title="stampa" media="print"/>
<script type="text/javascript" src="js/s3Nav.js"></script><script type="text/javascript" src="js/s3TipMain.js"></script>
</head>
<body>
<div id="global">
<div id="header">
<img src="img/s3LogoS3.gif" alt="Sistema SIGMA TER"/>
</div>
</div>
<div id="content" style="background-color: white;">
<h1 style="background-color: red;">Errore</h1>
<p>
<%
// l'intera storia delle eccezioni viene messa in una lista
List eccezioni = new ArrayList();
boolean erroreRemoto = false;
Throwable eccezioneCorrente = exception;
while (eccezioneCorrente!=null)
{
eccezioni.add(eccezioneCorrente);
out.println("<!--");
out.println("=====================================================================================");
out.println("ECCEZIONE");
out.println("=====================================================================================");
out.println("<pre>");
eccezioneCorrente.printStackTrace(new java.io.PrintWriter(out));
out.println("</pre>");
out.println("-->");
eccezioneCorrente = eccezioneCorrente.getCause();
}
out.println("Si è verificato un errore nell'invocazione della WebApplication");
out.println("<br/>");
Iterator it = eccezioni.iterator();
while (it.hasNext())
{
Throwable tt = (Throwable)it.next();
// INSERIRE IL CODICE PER MODIFICARE IL MESSAGGIO DI ERRORE
//out.println("<br/>");
//out.println(tt.getMessage()+" ("+tt.getClass().getName()+")");
//out.println("<br/>");
}
%>
</p>
</div>
<div id="footer">
Sistema SIGMA TER
<div id="core"><a href="http://www.sigmater.it" title="Link al sito SigmaTER">SigmaTER - Servizi Integrati catastali e Geografici per il Monitoraggio Amministrativo del TERritorio</a></div>
<div id="validator"><a href="http://validator.w3.org/check?uri=referer" title="Valida questa pagina (inglese)">HTML 4.01</a> | <a href="http://jigsaw.w3.org/css-validator/" title="Valida il foglio di stile (inglese)">CSS 2</a> | <a href="http://www.w3.org/WAI/about.html" title="Linee guida per l'accessibilita (inglese)">WAI-A</a>
</div>
</div>
</body>
</html>