With
    <servlet-mapping>  
            <servlet-name>ServerServlet</servlet-name>  
            <url-pattern>/*</url-pattern>  
    </servlet-mapping>

I get 404 from the Restlet Engine for the url 
http://localhost:8080/CaseManager/CaseManager.html  

I get proper response for 
http://localhost:8080/CaseManager/items


With 
    <servlet-mapping>  
            <servlet-name>ServerServlet</servlet-name>  
            <url-pattern>/items</url-pattern>  
    </servlet-mapping>

http://localhost:8080/CaseManager/items/items
Tomcat returns a 404 without going to the application class (The requested 
resource (/CaseManager/items/items) is not available.)

For http://localhost:8080/CaseManager/items
looks like the Restlet Engine returns a 404

------------------------------------------------------
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=1198767

Reply via email to