I am trying to get struts and jsf to play nice with each other. Right now, my only requirements are to have tiles supported. Most everything else will be handled through JSF.
I have looked at the struts-faces package, but most of it seems to be overkill for what I want. I would like to use struts-chain and slightly modify the default chain to handle this. I have 95% of this working but there is one big problem. When I "submit" the resulting page, it submits to the "layout.faces" instead of "foo.do" (whose forward points to the definition that uses layout.faces as the layout.) I am assuming the issue is that I have a <f:view> tag on my layout page and this is where the action is being configured. I'm still hunting in the source to confirm this ... My idea is to add a command to the "standard-servlet" chain that would handle this problem. I noticed in the struts-faces package that a HttpServletRequestWrapper is sometimes used. I tried wrapping the request using this but no luck. Any ideas on how I can accomplish this? TIA, sean --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

