I have an index.jsp that does invokes a global forward using: <logic:forward name="login"> to a login.jsp screen.
In my struts-config.xml, I have the global forward defintions as: <global-forwards > <forward name="login" path="app.login"/> </global-forwards>
And my tiles-def.xml is contains the app.login.
When I reach my index.jsp, the forwarding fails to find the app.login tile def. My tile defintion is currect as if I forward to it from an action class it works correct. Thanks in advance.
Never be satisfied with anything less than the best and you will surely pass the test...
Ningfeng Xu
Greenhorn
Joined: Jan 22, 2002
Posts: 18
posted
0
Perhaps the reason is, tiles definition could not be used(forwarded) automatically. An action has to be used to do this job. I could be wrong...