Hi,
When an AJAX event handler method returns a Page the following response
is generated which nicely redirects me to the page.
{
"redirectURL" :
"/jsportal-projectportal-client-tapestry/nl/secured/project/overview/3603"
}
When the same is generated though the process of the
ComponentRequestFilter [1] this response is generated which does not work.
{'redirectURL':'https://localhost:8443/jsportal-projectportal-client-tapestry/nl/login'}
When debuging the the javascript the reply is null but I can't seem to
find why this is. Does anyone have any idea why this stopped working?
Thanks,
Joost
[1] part of my ComponentRequestFilter:
public void handleComponentEvent(ComponentEventRequestParameters parameters,
ComponentRequestHandler handler)
throws IOException {
.......
String loginPage =
componentClassResolver.resolvePageClassNameToPageName(logonService.getLogonPage().getName());
event = new ComponentEventRequestParameters(loginPage,
loginPage, "", EventConstants.ACTIVATE,
emptyEventContext, emptyEventContext);
.......
handler.handleComponentEvent(event);
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org