2013-01-11 10:49:46 +07:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-11-29 16:13:51 +07:00
|
|
|
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
|
2021-09-04 21:12:10 +07:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
|
|
|
|
version="4.0">
|
2013-01-11 10:49:46 +07:00
|
|
|
<display-name>Web Console</display-name>
|
|
|
|
<description></description>
|
|
|
|
<filter id="bridge">
|
|
|
|
<filter-name>equinoxBridgeFilter</filter-name>
|
2019-11-29 16:13:51 +07:00
|
|
|
<filter-class>org.adempiere.eclipse.equinox.http.servlet.BridgeFilter</filter-class>
|
2013-01-11 10:49:46 +07:00
|
|
|
<init-param>
|
|
|
|
<param-name>HttpContext.ClassName</param-name>
|
|
|
|
<param-value>org.apache.felix.webconsole.internal.servlet.OsgiManagerHttpContext</param-value>
|
|
|
|
</init-param>
|
|
|
|
</filter>
|
|
|
|
<filter-mapping>
|
|
|
|
<filter-name>equinoxBridgeFilter</filter-name>
|
|
|
|
<url-pattern>/*</url-pattern>
|
|
|
|
</filter-mapping>
|
|
|
|
|
|
|
|
<session-config>
|
|
|
|
<session-timeout>30</session-timeout>
|
|
|
|
</session-config>
|
|
|
|
|
|
|
|
<mime-mapping>
|
|
|
|
<extension>css</extension>
|
|
|
|
<mime-type>text/css</mime-type>
|
|
|
|
</mime-mapping>
|
|
|
|
|
|
|
|
</web-app>
|