web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app id="Cafe2WebApp" 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>sakai-tasklist</display-name>
    <description>Sakai Task List</description>
	
	<!-- Sakai request filter -->
	<filter>
        <filter-name>sakai.request</filter-name>
        <filter-class>org.sakaiproject.util.RequestFilter</filter-class>
        <!-- Portal URLs encode the placement, so we don't need it added -->
        <init-param>
            <param-name>tool.placement</param-name>
            <param-value>none</param-value>
        </init-param>
    </filter>
	
	<filter-mapping>
		<filter-name>sakai.request</filter-name>
		<servlet-name>sakai.tasklist</servlet-name>
		<dispatcher>REQUEST</dispatcher>
		<dispatcher>FORWARD</dispatcher>
		<dispatcher>INCLUDE</dispatcher>
	</filter-mapping>
	
	<servlet>
        <servlet-name>sakai.tasklist</servlet-name>
        <servlet-class>org.sakaiproject.tool.tasklist.TaskListController</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

	<!-- tool listener is required -->
    <listener>
        <listener-class>org.sakaiproject.util.ToolListener</listener-class>
    </listener>

	<listener>
        <listener-class>org.sakaiproject.util.ContextLoaderListener</listener-class>
    </listener>
    
    <context-param>
		<param-name>contextSharedLocation</param-name>
		<param-value>
			/WEB-INF/applicationContext.xml
		</param-value>
	</context-param>

    <welcome-file-list>
		<welcome-file>index.html</welcome-file>
	</welcome-file-list>
</web-app>
Enter labels to add to this page:
Please wait 
Looking for a label? Just start typing.