Hi,
I need the url pattern for my application to be "/grid/*".
I configured the web.xml file like this:
<web-app>
<filter>
<filter-name>LiftFilter</filter-name>
<display-name>Lift Filter</display-name>
<description>The Filter that intercepts lift calls</description>
<filter-class>net.liftweb.http.LiftFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>LiftFilter</filter-name>
<url-pattern>/grid/*</url-pattern>
</filter-mapping>
</web-app>
But my application does not run with this pattern (e.g.
http://localhost:8080/SortableGridViewApp-0.0.1/grid/).
What other seetings I need to make?
Regards,
Sunanda