2006-11-17 10:15:48 +07:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<web-app 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"
|
|
|
|
version="2.4">
|
|
|
|
<icon>
|
2013-04-17 07:28:55 +07:00
|
|
|
<large-icon>/iD32.gif</large-icon>
|
2006-11-17 10:15:48 +07:00
|
|
|
</icon>
|
2013-04-17 07:28:55 +07:00
|
|
|
<display-name>iDempiere Web Store</display-name>
|
2010-03-26 21:20:40 +07:00
|
|
|
<description></description>
|
2006-11-17 10:15:48 +07:00
|
|
|
<!--Standard Parameters - if 0 use web store context -->
|
|
|
|
<context-param>
|
|
|
|
<param-name>#W_Store_ID</param-name>
|
|
|
|
<param-value>0</param-value>
|
|
|
|
</context-param>
|
2012-02-17 05:28:30 +07:00
|
|
|
<context-param>
|
|
|
|
<param-name>#AD_Client_ID</param-name>
|
|
|
|
<param-value>1000000</param-value>
|
|
|
|
</context-param>
|
2011-01-11 00:08:37 +07:00
|
|
|
<filter id="bridge">
|
|
|
|
<filter-name>equinoxBridgeFilter</filter-name>
|
|
|
|
<filter-class>org.eclipse.equinox.servletbridge.BridgeFilter</filter-class>
|
|
|
|
<init-param>
|
2013-01-11 10:49:46 +07:00
|
|
|
<param-name>HttpContext.ClassName</param-name>
|
|
|
|
<param-value>org.adempiere.webstore.DefaultHttpContext</param-value>
|
2011-01-11 00:08:37 +07:00
|
|
|
</init-param>
|
2006-11-17 10:15:48 +07:00
|
|
|
</filter>
|
|
|
|
<filter-mapping>
|
2011-01-11 00:08:37 +07:00
|
|
|
<filter-name>equinoxBridgeFilter</filter-name>
|
2006-11-17 10:15:48 +07:00
|
|
|
<url-pattern>/*</url-pattern>
|
|
|
|
</filter-mapping>
|
2011-01-11 00:08:37 +07:00
|
|
|
<!--
|
|
|
|
This is required if your application bundles expose JSPs.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<filter-mapping>
|
|
|
|
<filter-name>equinoxBridgeFilter</filter-name>
|
|
|
|
<url-pattern>*.jsp</url-pattern>
|
|
|
|
</filter-mapping>
|
|
|
|
|
2010-03-26 21:20:40 +07:00
|
|
|
<!-- Force SSL connection for login and checkout -->
|
2009-09-25 10:59:55 +07:00
|
|
|
<security-constraint>
|
|
|
|
<web-resource-collection>
|
|
|
|
<web-resource-name>SSL pages</web-resource-name>
|
|
|
|
<url-pattern>/login.jsp</url-pattern>
|
|
|
|
<url-pattern>/loginServlet</url-pattern>
|
|
|
|
<url-pattern>/checkOutServlet</url-pattern>
|
|
|
|
<url-pattern>/orderServlet</url-pattern>
|
|
|
|
</web-resource-collection>
|
|
|
|
|
|
|
|
<user-data-constraint>
|
|
|
|
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
|
|
|
|
</user-data-constraint>
|
|
|
|
</security-constraint>
|
2011-01-11 00:08:37 +07:00
|
|
|
|
2006-11-17 10:15:48 +07:00
|
|
|
<session-config>
|
|
|
|
<session-timeout>30</session-timeout>
|
|
|
|
</session-config>
|
2011-01-11 00:08:37 +07:00
|
|
|
|
2008-10-02 15:30:10 +07:00
|
|
|
<mime-mapping>
|
|
|
|
<extension>css</extension>
|
|
|
|
<mime-type>text/css</mime-type>
|
|
|
|
</mime-mapping>
|
2011-01-11 00:08:37 +07:00
|
|
|
|
2006-11-17 10:15:48 +07:00
|
|
|
<welcome-file-list>
|
|
|
|
<welcome-file>index.jsp</welcome-file>
|
2010-03-26 21:20:40 +07:00
|
|
|
</welcome-file-list>
|
2006-11-17 10:15:48 +07:00
|
|
|
</web-app>
|