| 1 | <?xml version="1.0" encoding="UTF-8"?> |
|---|
| 2 | <web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" |
|---|
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|---|
| 4 | xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee |
|---|
| 5 | http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> |
|---|
| 6 | |
|---|
| 7 | <display-name>PortalApplication</display-name> |
|---|
| 8 | <servlet> |
|---|
| 9 | <servlet-name>DemoPortletApplication</servlet-name> |
|---|
| 10 | <servlet-class>com.itmill.toolkit.terminal.gwt.server.ApplicationServlet</servlet-class> |
|---|
| 11 | <init-param> |
|---|
| 12 | <param-name>application</param-name> |
|---|
| 13 | <param-value>com.itmill.toolkit.demo.DemoPortletApplication</param-value> |
|---|
| 14 | </init-param> |
|---|
| 15 | </servlet> |
|---|
| 16 | |
|---|
| 17 | <servlet-mapping> |
|---|
| 18 | <servlet-name>DemoPortletApplication</servlet-name> |
|---|
| 19 | <url-pattern>/*</url-pattern> |
|---|
| 20 | </servlet-mapping> |
|---|
| 21 | </web-app> |
|---|