Hi all, I have an application which is displaying the content of another wb application in a frame. In this process, the jsf will rewrite new links with current application context path:
APP1 --> calls APP2 link1: http://localhost:8080/pages/newPath/newPage.xhtml in above link, /newPath/newPage.xhtml is for the other application (APP2) and doesn't exist in APP1 I want to write a filter or something to check that if the path is not from my application I invoke an action method (#{dispatcher.dispatch}) and add this new path as an parameter, say, EXT_PATH=/newPath/newPage.xhtml so the controller (here is dispatcher) decides how to do with it. I wrote a PhaseListener but it seems this URL will be resolved even before that so in result, because I don't have that path in my APP1 and I get an error! Could you please help me on this? ----- -- Regards Mohammad Norouzi Help each other to reach the future faster http://pixelshot.wordpress.com Pixelshot Photoblog http://brainable.blogspot.com Brainable Blog -- View this message in context: http://old.nabble.com/How-to-manage-URLs-in-JSF-tp30561750p30561750.html Sent from the MyFaces - Users mailing list archive at Nabble.com.

