I am linking Page Flows and Flex together . I am running into path issues.
This is my Structure
/Test/
/WebContent/
MyController.do
/flex
a.jsp[ This does a jsp include to flex.html ]
flex.html [ .js and .swf file also]
When I access Flex.html from url
/Test/flex/flex.html - it works fine
/Test/a.jsp - This also works fine .
But If i access showTest.do the flex file does not get loaded .but rest of the
code inside a.jsp gets printed
code for my controller .
@Jpf.Action(forwards = { @Jpf.Forward(name = "success", path = "/flex/a.jsp") })
public Forward showTest() {
return new Forward("success");
}
Can anyone help me with regards to this .