On 9/20/07, Nicolas LE BAS <[EMAIL PROTECTED]> wrote: > It looks like JSF's view id is "/index.tiles", not "/index.jsp". > Add the following to web.xml : > > |<context-param> > <param-name>javax.faces.DEFAULT_SUFFIX</param-name> > <param-value>.tiles</param-value> > </context-param> > | > > and modify your navigation rules to use "*.tiles" instead of "*.jsp". It > should work. > I don't know exactly what TilesViewHandler does but it doesn't seem > necessary to make your example work. The TilesDispatchServlet is enough. >
Thanks, that seems to work in the demo app, now I have to figure out what I did differently in my real app, cause it isn't working there yet. Thanks again. (*Chris*)
