[Stripes-users] URL not bound to actionbean in Tomcat6

2012-05-15 Thread Dawson Mossman
We're currently using the Stripes framework on an active production application - lately we've been getting errors saying Caused by: net.sourceforge.stripes.exception.ActionBeanNotFoundException: Could not locate an ActionBean that is bound to the URL. This seems to be happening when Tomcat

[Stripes-users] Mapping Root of Web App to an Action using Dynamic Mappings

2012-05-15 Thread chris-c
Hello, I'm using DynamicMappingFilter and annotated URLs for all my actions. I'm trying to map the root of the application context / to an existing actionBean. The actionbean I want / to go to, is currently bound to /category. I created a new IndexActionBean which Forwards to

Re: [Stripes-users] Mapping Root of Web App to an Action using Dynamic Mappings

2012-05-15 Thread Grzegorz Krugły
W dniu 15.05.2012 21:04, chris-c pisze: I'm trying to map the root of the application context / to an existing actionBean. The actionbean I want / to go to, is currently bound to /category. I've wrestled with this for some time and no solution was flexible enough for my needs (I need

Re: [Stripes-users] Mapping Root of Web App to an Action using Dynamic Mappings

2012-05-15 Thread VANKEISBELCK Remi
Hi Christian, Can't you just write an index.jsp file that forwards to your main action ? Cheers Remi 2012/5/15 Cristian C ottersl...@gmail.com Grzegorz, Have you seen http://www.tuckey.org/urlrewrite/ It does pretty much what your filter does and much more. My problem is that even with

Re: [Stripes-users] URL not bound to actionbean in Tomcat6

2012-05-15 Thread VANKEISBELCK Remi
Hi Dawson, Do you have a full stack trace ? Cheers Remi 2012/5/15 Dawson Mossman daws...@lashpoint.com We're currently using the Stripes framework on an active production application - lately we've been getting errors saying Caused by:

Re: [Stripes-users] Mapping Root of Web App to an Action using Dynamic Mappings

2012-05-15 Thread chris-c
Hi, Yes that worked, I added this in the index.jsp jsp:include page=/category/ And I already had dispatcher INCLUDE defined in web.xml for the filter. I hope going through the JSP doesn't add much overhead. thanks! VANKEISBELCK Remi-2 wrote: Hi Christian, Can't you just write an