Is there any special configuration needed in web.xml for using org.restlet.routing.Filter? I have edited it as(same as javax.servlet.Filter):
<filter>
<filter-name>Filter</filter-name>
<filter-class>*myfilterclassname*</filter-class>
</filter>
<filter-mapping>
<filter-name>Filter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
Its not working & the response is "Source not available". Any more changes needed in web.xml?