Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
37 | Andrea | 1 | <%@page isErrorPage="true" contentType="text/html" autoFlush="true" import="java.util.*" %> |
2 | |||
3 | <html lang="it"> |
||
4 | <head> |
||
5 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> |
||
6 | <title>SIGMA TER ERRORE</title> |
||
7 | <meta content="text/html;charset=utf-8" http-equiv="Content-Type"/> |
||
8 | <meta content="it" http-equiv="Content-Language"/> |
||
9 | <style type="text/css" media="screen, print"> |
||
10 | @import "css/s3Main.css"; |
||
11 | </style> |
||
12 | <link rel="stylesheet" type="text/css" href="css/s3MainNormale.css" title="normale" media="screen, print"/> |
||
13 | <link rel="alternate stylesheet" type="text/css" href="css/s3MainPiccolo.css" title="piccolo" media="screen, print"/> |
||
14 | <link rel="alternate stylesheet" type="text/css" href="css/s3MainGrande.css" title="grande" media="screen, print"/> |
||
15 | <link rel="stylesheet" type="text/css" href="css/s3Print.css" title="stampa" media="print"/> |
||
16 | <script type="text/javascript" src="js/s3Nav.js"></script><script type="text/javascript" src="js/s3TipMain.js"></script> |
||
17 | </head> |
||
18 | <body> |
||
19 | <div id="global"> |
||
20 | <div id="header"> |
||
21 | <img src="img/s3LogoS3.gif" alt="Sistema SIGMA TER"/> |
||
22 | </div> |
||
23 | </div> |
||
24 | <div id="content" style="background-color: white;"> |
||
25 | <h1 style="background-color: red;">Errore</h1> |
||
26 | <p> |
||
27 | |||
28 | <% |
||
29 | // l'intera storia delle eccezioni viene messa in una lista |
||
30 | List eccezioni = new ArrayList(); |
||
31 | |||
32 | boolean erroreRemoto = false; |
||
33 | |||
34 | Throwable eccezioneCorrente = exception; |
||
35 | |||
36 | while (eccezioneCorrente!=null) |
||
37 | { |
||
38 | eccezioni.add(eccezioneCorrente); |
||
39 | |||
40 | out.println("<!--"); |
||
41 | out.println("====================================================================================="); |
||
42 | out.println("ECCEZIONE"); |
||
43 | out.println("====================================================================================="); |
||
44 | out.println("<pre>"); |
||
45 | eccezioneCorrente.printStackTrace(new java.io.PrintWriter(out)); |
||
46 | out.println("</pre>"); |
||
47 | out.println("-->"); |
||
48 | |||
49 | eccezioneCorrente = eccezioneCorrente.getCause(); |
||
50 | } |
||
51 | |||
52 | |||
53 | out.println("Si è verificato un errore nell'invocazione della WebApplication"); |
||
54 | out.println("<br/>"); |
||
55 | |||
56 | Iterator it = eccezioni.iterator(); |
||
57 | while (it.hasNext()) |
||
58 | { |
||
59 | Throwable tt = (Throwable)it.next(); |
||
60 | |||
61 | // INSERIRE IL CODICE PER MODIFICARE IL MESSAGGIO DI ERRORE |
||
62 | |||
63 | //out.println("<br/>"); |
||
64 | //out.println(tt.getMessage()+" ("+tt.getClass().getName()+")"); |
||
65 | //out.println("<br/>"); |
||
66 | } |
||
67 | %> |
||
68 | |||
69 | </p> |
||
70 | |||
71 | </div> |
||
72 | |||
73 | <div id="footer"> |
||
74 | Sistema SIGMA TER |
||
75 | <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> |
||
76 | <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> |
||
77 | </div> |
||
78 | </div> |
||
79 | </body> |
||
80 | </html> |