Hi,
what about a print to the server console or your "head" - variable?
uniqaContext = {
// some attributes and other methods
// ............
displayErrorPage: function(head:String) {
print( head );
sessionScope.errorPageHeader = head;
context.redirectToPage("ErrorPage");
}
};
Sven