I'm having a problem getting a tiles definition to be used as an action forward. I'm using
Struts 1.1 RC1 and
Tomcat 4.03.
The tiles definition is:
The <global-forward> is defined as:
<forward name="home" path=".homeLayout"/>
In a
JSP, I have a tag that reads:
<logic:forward name="home" />
When this JSP is requested, the "home" forward is resolved to "/.homeLayout" and Tomcat sends a 404 error with the message: The requested resource (/.homeLayout) is not available.
It appears that the .homeLayout definition isn't being resolved by Struts/Tiles as /common/defaultLayout.jsp with all the included JSP tiles. In looking at the trace log, it appears all of the definitions are being parsed okay, but there's a lot going on during the process I'm not sure about.
My controller
servlet subclasses the Tiles ActionComponentServlet and the plug-in is declared like:
I'm sure I've overlooked the obvious, but it's not so obvious to me at the moment! Any advise would be appreciated.