Hi,
i have a flowscript funtion which does the following:
var user = null;
importClass(Packages.test.User);
var newUser = new User();
var msg = "";
function login() {
while (user == null) {
cocoon.sendPageAndWait("login.jx", {"msg":msg});
try {
user = newUser.getUser(cocoon.request.get("username"), cocoon.request.get("password") );
break;
}catch(e){
msg = "The username password combination you entered does not exist. Please retry.";
}
}
cocoon.sendPage("safe_user_area");
}
So, when a user has been accepted at login redirect them to safe_user_area. I have tried cocoon.redirect(uri) but keep getting an error which says that the redirect function does not exist, when it does! When am I being told that a map pattern which exists, doesn't????
<map:match pattern="safe_user_area">
<map:aggregate element="home">
<map:part src="cocoon:/support/beya-menu"/>
<map:part src="cocoon:/support/contract-summary"/>
<map:part src="context://beyarecords/content/adv-xyz-01.xml"/>
<map:part src="cocoon:/support/banner"/>
</map:aggregate>
<map:transform type="xslt" src="style/home-page.xsl"/>
<map:call resource="serialize"/>
Peter
- Re: redirect problem with flowscript : No pipeline mat... beyaNet Consultancy
- Re: redirect problem with flowscript : No pipelin... Jan Hoskens
- Re: redirect problem with flowscript : No pip... Joerg Heinicke
