| 1 | <!DOCTYPE web-app PUBLIC
|
|---|
| 2 | "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
|
|---|
| 3 | "http://java.sun.com/dtd/web-app_2_3.dtd" >
|
|---|
| 4 | <web-app>
|
|---|
| 5 | <display-name>Emergency Department Tracking Board Server Proxy Application</display-name>
|
|---|
| 6 |
|
|---|
| 7 | <context-param>
|
|---|
| 8 | <param-name>javax.servlet.jsp.jstl.fmt.localizationContext</param-name>
|
|---|
| 9 | <param-value>strings</param-value>
|
|---|
| 10 | </context-param>
|
|---|
| 11 | <!-- Fallback locale if no bundles found for browser's preferred locale -->
|
|---|
| 12 | <!-- Force a single locale using param-name 'javax.servlet.jsp.jstl.fmt.locale' -->
|
|---|
| 13 | <context-param>
|
|---|
| 14 | <param-name>javax.servlet.jsp.jstl.fmt.fallbackLocale</param-name>
|
|---|
| 15 | <param-value>en</param-value>
|
|---|
| 16 | </context-param>
|
|---|
| 17 |
|
|---|
| 18 | <context-param>
|
|---|
| 19 | <param-name>contextConfigLocation</param-name>
|
|---|
| 20 | <param-value>/WEB-INF/config/web-application-config.xml</param-value>
|
|---|
| 21 | </context-param>
|
|---|
| 22 |
|
|---|
| 23 | <filter>
|
|---|
| 24 | <filter-name>springSecurityFilterChain</filter-name>
|
|---|
| 25 | <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
|
|---|
| 26 | </filter>
|
|---|
| 27 |
|
|---|
| 28 | <filter>
|
|---|
| 29 | <filter-name>characterEncodingFilter</filter-name>
|
|---|
| 30 | <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
|
|---|
| 31 | <init-param>
|
|---|
| 32 | <param-name>encoding</param-name>
|
|---|
| 33 | <param-value>UTF-8</param-value>
|
|---|
| 34 | </init-param>
|
|---|
| 35 | </filter>
|
|---|
| 36 |
|
|---|
| 37 | <filter>
|
|---|
| 38 | <filter-name>noCacheFilter</filter-name>
|
|---|
| 39 | <filter-class>gov.va.med.edp.web.servlet.filter.ResponseHeaderFilter</filter-class>
|
|---|
| 40 | <init-param>
|
|---|
| 41 | <param-name>Cache-Control</param-name>
|
|---|
| 42 | <param-value>no-store, must-revalidate</param-value>
|
|---|
| 43 | </init-param>
|
|---|
| 44 | <init-param>
|
|---|
| 45 | <param-name>Expires</param-name>
|
|---|
| 46 | <param-value>Thu, 01 Jan 1970 01:00:00 GMT</param-value>
|
|---|
| 47 | </init-param>
|
|---|
| 48 | </filter>
|
|---|
| 49 |
|
|---|
| 50 | <filter-mapping>
|
|---|
| 51 | <filter-name>springSecurityFilterChain</filter-name>
|
|---|
| 52 | <url-pattern>/*</url-pattern>
|
|---|
| 53 | </filter-mapping>
|
|---|
| 54 |
|
|---|
| 55 | <filter-mapping>
|
|---|
| 56 | <filter-name>characterEncodingFilter</filter-name>
|
|---|
| 57 | <url-pattern>/*</url-pattern>
|
|---|
| 58 | </filter-mapping>
|
|---|
| 59 |
|
|---|
| 60 | <filter-mapping>
|
|---|
| 61 | <filter-name>noCacheFilter</filter-name>
|
|---|
| 62 | <url-pattern>*.swf</url-pattern>
|
|---|
| 63 | </filter-mapping>
|
|---|
| 64 |
|
|---|
| 65 | <filter-mapping>
|
|---|
| 66 | <filter-name>noCacheFilter</filter-name>
|
|---|
| 67 | <url-pattern>/tracking.html</url-pattern>
|
|---|
| 68 | </filter-mapping>
|
|---|
| 69 |
|
|---|
| 70 | <filter-mapping>
|
|---|
| 71 | <filter-name>noCacheFilter</filter-name>
|
|---|
| 72 | <url-pattern>/board.html</url-pattern>
|
|---|
| 73 | </filter-mapping>
|
|---|
| 74 |
|
|---|
| 75 | <filter-mapping>
|
|---|
| 76 | <filter-name>noCacheFilter</filter-name>
|
|---|
| 77 | <url-pattern>/logout.html</url-pattern>
|
|---|
| 78 | </filter-mapping>
|
|---|
| 79 |
|
|---|
| 80 | <listener>
|
|---|
| 81 | <listener-class>org.springframework.web.util.IntrospectorCleanupListener</listener-class>
|
|---|
| 82 | </listener>
|
|---|
| 83 |
|
|---|
| 84 | <listener>
|
|---|
| 85 | <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
|
|---|
| 86 | </listener>
|
|---|
| 87 |
|
|---|
| 88 | <listener>
|
|---|
| 89 | <listener-class>org.springframework.security.ui.session.HttpSessionEventPublisher</listener-class>
|
|---|
| 90 | </listener>
|
|---|
| 91 |
|
|---|
| 92 | <listener>
|
|---|
| 93 | <listener-class>gov.va.med.edp.web.servlet.listener.TimeOutIntegrationSessionAttributeListener</listener-class>
|
|---|
| 94 | </listener>
|
|---|
| 95 |
|
|---|
| 96 | <servlet>
|
|---|
| 97 | <servlet-name>dispatcher</servlet-name>
|
|---|
| 98 | <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
|
|---|
| 99 | <load-on-startup>1</load-on-startup>
|
|---|
| 100 | </servlet>
|
|---|
| 101 |
|
|---|
| 102 | <servlet-mapping>
|
|---|
| 103 | <servlet-name>dispatcher</servlet-name>
|
|---|
| 104 | <url-pattern>*.xml</url-pattern>
|
|---|
| 105 | </servlet-mapping>
|
|---|
| 106 |
|
|---|
| 107 | <servlet-mapping>
|
|---|
| 108 | <servlet-name>dispatcher</servlet-name>
|
|---|
| 109 | <url-pattern>*.csv</url-pattern>
|
|---|
| 110 | </servlet-mapping>
|
|---|
| 111 |
|
|---|
| 112 | <servlet-mapping>
|
|---|
| 113 | <servlet-name>dispatcher</servlet-name>
|
|---|
| 114 | <url-pattern>*.html</url-pattern>
|
|---|
| 115 | </servlet-mapping>
|
|---|
| 116 |
|
|---|
| 117 | <session-config>
|
|---|
| 118 | <session-timeout>5</session-timeout>
|
|---|
| 119 | </session-config>
|
|---|
| 120 |
|
|---|
| 121 | <welcome-file-list>
|
|---|
| 122 | <welcome-file>/index.jsp</welcome-file>
|
|---|
| 123 | </welcome-file-list>
|
|---|
| 124 |
|
|---|
| 125 | <error-page>
|
|---|
| 126 | <error-code>500</error-code>
|
|---|
| 127 | <location>/error500.jsp</location>
|
|---|
| 128 | </error-page>
|
|---|
| 129 |
|
|---|
| 130 | <!--<security-constraint>-->
|
|---|
| 131 | <!--<web-resource-collection>-->
|
|---|
| 132 | <!--<web-resource-name>ED Tracking Board XML Services</web-resource-name>-->
|
|---|
| 133 | <!--<url-pattern>*.xml</url-pattern>-->
|
|---|
| 134 | <!--<http-method>GET</http-method>-->
|
|---|
| 135 | <!--<http-method>POST</http-method>-->
|
|---|
| 136 | <!--</web-resource-collection>-->
|
|---|
| 137 | <!--<auth-constraint>-->
|
|---|
| 138 | <!--<role-name>AUTHENTICATED_KAAJEE_USER</role-name>-->
|
|---|
| 139 | <!--</auth-constraint>-->
|
|---|
| 140 | <!--<user-data-constraint>-->
|
|---|
| 141 | <!--<transport-guarantee>NONE</transport-guarantee>-->
|
|---|
| 142 | <!--</user-data-constraint>-->
|
|---|
| 143 | <!--</security-constraint>-->
|
|---|
| 144 |
|
|---|
| 145 | <!--<security-constraint>-->
|
|---|
| 146 | <!--<web-resource-collection>-->
|
|---|
| 147 | <!--<web-resource-name>ED Tracking Board Flex Client</web-resource-name>-->
|
|---|
| 148 | <!--<url-pattern>*.swf</url-pattern>-->
|
|---|
| 149 | <!--<url-pattern>tracking.html</url-pattern>-->
|
|---|
| 150 | <!--<url-pattern>board.html</url-pattern>-->
|
|---|
| 151 | <!--<http-method>GET</http-method>-->
|
|---|
| 152 | <!--</web-resource-collection>-->
|
|---|
| 153 | <!--<auth-constraint>-->
|
|---|
| 154 | <!--<role-name>AUTHENTICATED_KAAJEE_USER</role-name>-->
|
|---|
| 155 | <!--</auth-constraint>-->
|
|---|
| 156 | <!--<user-data-constraint>-->
|
|---|
| 157 | <!--<transport-guarantee>NONE</transport-guarantee>-->
|
|---|
| 158 | <!--</user-data-constraint>-->
|
|---|
| 159 | <!--</security-constraint>-->
|
|---|
| 160 |
|
|---|
| 161 | <!--<security-constraint>-->
|
|---|
| 162 | <!--<web-resource-collection>-->
|
|---|
| 163 | <!--<web-resource-name>ED Tracking Board Debug Screen</web-resource-name>-->
|
|---|
| 164 | <!--<url-pattern>debug.jsp</url-pattern>-->
|
|---|
| 165 | <!--<http-method>GET</http-method>-->
|
|---|
| 166 | <!--</web-resource-collection>-->
|
|---|
| 167 | <!--<auth-constraint>-->
|
|---|
| 168 | <!--<role-name>AUTHENTICATED_KAAJEE_USER</role-name>-->
|
|---|
| 169 | <!--</auth-constraint>-->
|
|---|
| 170 | <!--<user-data-constraint>-->
|
|---|
| 171 | <!--<transport-guarantee>NONE</transport-guarantee>-->
|
|---|
| 172 | <!--</user-data-constraint>-->
|
|---|
| 173 | <!--</security-constraint>-->
|
|---|
| 174 |
|
|---|
| 175 | <!--<login-config>-->
|
|---|
| 176 | <!--<auth-method>FORM</auth-method>-->
|
|---|
| 177 | <!--<form-login-config>-->
|
|---|
| 178 | <!--<form-login-page>login/login.jsp</form-login-page>-->
|
|---|
| 179 | <!--<form-error-page>login/loginerror.jsp</form-error-page>-->
|
|---|
| 180 | <!--</form-login-config>-->
|
|---|
| 181 | <!--</login-config>-->
|
|---|
| 182 | <!---->
|
|---|
| 183 | <!--<security-role>-->
|
|---|
| 184 | <!--<role-name>AUTHENTICATED_KAAJEE_USER</role-name>-->
|
|---|
| 185 | <!--</security-role>-->
|
|---|
| 186 | </web-app>
|
|---|