web.xml
4.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>FileProxy 1.0.2 (17) - ADT/production [15/07/2014 14:39]</display-name>
<!-- Ultime modifiche del 23/06/2014 -->
<!-- Configurazione per New Relic -->
<context-param>
<param-name>com.newrelic.agent.APPLICATION_NAME</param-name>
<param-value>FileProxyServer ADT (production)</param-value>
</context-param>
<!-- ADT/production - 15/07/2014 14:39 -->
<!-- Configurazioni obbligatorie -->
<context-param>
<param-name>ErrorPage</param-name>
<param-value>/error.jsp</param-value>
</context-param>
<context-param>
<param-name>constantsFile</param-name>
<param-value>portal_settings.xml</param-value>
</context-param>
<context-param>
<param-name>logPropertyFile</param-name>
<param-value>log4j.xml</param-value>
</context-param>
<context-param>
<param-name>defaultLanguage</param-name>
<param-value>it</param-value>
</context-param>
<!-- Utilizzata per la gestione della sessione - solo per funzioni di monitoraggio -->
<context-param>
<param-name>SessionFactory</param-name>
<param-value>it.softecspa.jwebber.frameworkImpl.session.CMSImplSessionFactory</param-value>
</context-param>
<!-- Utilizzata per la gestione della sicurezza - solo per funzioni di monitoraggio -->
<context-param>
<param-name>SecurityManager</param-name>
<param-value>it.softecspa.jwebber.frameworkImpl.security.CMSImplSecurityManager</param-value>
</context-param>
<!-- @deprecated - Contiene l'elenco delle funzioni di cui deve essere fatto il log degli accessi -->
<context-param>
<param-name>accessLogWhat</param-name>
<param-value>,*,</param-value>
</context-param>
<!-- @deprecated - Configurazioni opzionali -->
<context-param>
<param-name>mailServer</param-name>
<param-value>localhost</param-value>
</context-param>
<!-- Da valorizzare se si vuole la autenticazione JWebber -->
<context-param>
<param-name>keyStore</param-name>
<param-value>it.softecspa.portal.security.KeyStoreImpl</param-value>
</context-param>
<!-- Servlet -->
<!-- Startup -->
<servlet>
<servlet-name>WebApp</servlet-name>
<servlet-class>it.softecspa.portal.InitWebApp</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>WebApp</servlet-name>
<url-pattern>/WebApp</url-pattern>
</servlet-mapping>
<!-- POST-SERVICE - servlet -->
<servlet>
<description>Servlet http file proxy</description>
<display-name>httpFileProxy-Statement Servlet</display-name>
<servlet-name>httpFileProxyServlet</servlet-name>
<servlet-class>it.softecspa.fileproxy.proxyservices.HttpFileProxyService</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>httpFileProxyServlet</servlet-name>
<url-pattern>/proxy-services/statement</url-pattern>
</servlet-mapping>
<!-- MONITOR - servlet -->
<servlet>
<description>Servlet di monitoraggio standard</description>
<display-name>Monitor Servlet</display-name>
<servlet-name>Monitor</servlet-name>
<servlet-class>it.softecspa.portal.Monitor</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Monitor</servlet-name>
<url-pattern>/monitor</url-pattern>
</servlet-mapping>
<session-config>
<!-- Sono Minuti -->
<session-timeout>15</session-timeout>
</session-config>
<mime-mapping>
<extension>html</extension>
<mime-type>text/html</mime-type>
</mime-mapping>
<mime-mapping>
<extension>dtd</extension>
<mime-type>text/plain</mime-type>
</mime-mapping>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>