| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- <?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>MWUI</display-name>
- <context-param>
- <param-name>contextConfigLocation</param-name>
- <param-value>/WEB-INF/ServiceContext.xml</param-value>
- </context-param>
- <listener>
- <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
- </listener>
- <jsp-config>
- <taglib>
- <taglib-uri>struts-bean.tld</taglib-uri>
- <taglib-location>/WEB-INF/tld/struts-bean.tld</taglib-location>
- </taglib>
- <taglib>
- <taglib-uri>struts-html.tld</taglib-uri>
- <taglib-location>/WEB-INF/tld/struts-html.tld</taglib-location>
- </taglib>
- <taglib>
- <taglib-uri>struts-logic.tld</taglib-uri>
- <taglib-location>/WEB-INF/tld/struts-logic.tld</taglib-location>
- </taglib>
- <taglib>
- <taglib-uri>struts-nested.tld</taglib-uri>
- <taglib-location>/WEB-INF/tld/struts-nested.tld</taglib-location>
- </taglib>
- <taglib>
- <taglib-uri>struts-tiles.tld</taglib-uri>
- <taglib-location>/WEB-INF/tld/struts-tiles.tld</taglib-location>
- </taglib>
- <taglib>
- <taglib-uri>taglibs-string-edit.tld</taglib-uri>
- <taglib-location>/WEB-INF/tld/taglibs-string-edit.tld</taglib-location>
- </taglib>
- </jsp-config>
- <servlet>
- <description>
- </description>
- <servlet-name>ActionServlet</servlet-name>
- <servlet-class>
- id.co.hanoman.shared.HanomanAction</servlet-class>
- <init-param>
- <description>
- </description>
- <param-name>application</param-name>
- <param-value>ApplicationResources</param-value>
- </init-param>
- <init-param>
- <description>
- </description>
- <param-name>config</param-name>
- <param-value>/WEB-INF/struts-config.xml</param-value>
- </init-param>
- <init-param>
- <description>
- </description>
- <param-name>debug</param-name>
- <param-value>3</param-value>
- </init-param>
- <init-param>
- <description>
- </description>
- <param-name>detail</param-name>
- <param-value>3</param-value>
- </init-param>
- <load-on-startup>1</load-on-startup>
- </servlet>
- <servlet-mapping>
- <servlet-name>ActionServlet</servlet-name>
- <url-pattern>*.do</url-pattern>
- </servlet-mapping>
- <!-- servlet COdex -->
- <servlet>
- <description>
- </description>
- <display-name>CodexServlet</display-name>
- <servlet-name>CodexServlet</servlet-name>
- <servlet-class>
- id.co.hanoman.shared.CodexServlet</servlet-class>
- <load-on-startup>2</load-on-startup>
- </servlet>
- <servlet-mapping>
- <servlet-name>CodexServlet</servlet-name>
- <url-pattern>/CodexServlet</url-pattern>
- </servlet-mapping>
- <session-config>
- <session-timeout>3</session-timeout>
- </session-config>
- <welcome-file-list>
- <welcome-file>login.jsp</welcome-file>
- <welcome-file>index.jsp</welcome-file>
- </welcome-file-list>
- <error-page>
- <exception-type>java.lang.Throwable</exception-type>
- <location>/error_general.jsp</location>
- </error-page>
- <security-constraint>
- <display-name>MWSecurityConstraint</display-name>
- <web-resource-collection>
- <web-resource-name>MWSecurityCollection</web-resource-name>
- <url-pattern>/images/*</url-pattern>
- <url-pattern>/css/*</url-pattern>
- <url-pattern>/icons/*</url-pattern>
- <http-method>GET</http-method>
- <http-method>PUT</http-method>
- <http-method>HEAD</http-method>
- <http-method>TRACE</http-method>
- <http-method>POST</http-method>
- <http-method>DELETE</http-method>
- <http-method>OPTIONS</http-method>
- </web-resource-collection>
- </security-constraint>
- <security-role>
- <role-name>MWSecurity</role-name>
- </security-role>
- <login-config>
- <auth-method>FORM</auth-method>
- <realm-name>LDAP</realm-name>
- <form-login-config>
- <form-login-page>/login.jsp</form-login-page>
- <form-error-page>/failure.jsp</form-error-page>
- </form-login-config>
- </login-config>
- </web-app>
|