Re: ErrorScreen and SecureScreen

2003-11-18 Thread Naree Song
e Users List" <[EMAIL PROTECTED]> Sent: Wednesday, November 19, 2003 12:31 PM Subject: Re: ErrorScreen and SecureScreen > > You should be able to handle this with something like the following > > data.setMessage("this is your error message.") > > in the exception

Re: ErrorScreen and SecureScreen

2003-11-18 Thread Jeff Painter
You should be able to handle this with something like the following data.setMessage("this is your error message.") in the exception handler part of your doBuildTemplate() you can then use data.setScreenTemplate() to redirect the user to whichever error screen you want. currently the de

Re: ErrorScreen and SecureScreen

2003-11-18 Thread Naree Song
Scott Eade" <[EMAIL PROTECTED]> To: "Turbine Users List" <[EMAIL PROTECTED]> Sent: Wednesday, November 19, 2003 9:40 AM Subject: Re: ErrorScreen and SecureScreen > Naree Song wrote: > > >I want to use SecureScreen to limit access to some pages > >but I al

Re: ErrorScreen and SecureScreen

2003-11-18 Thread Scott Eade
Naree Song wrote: I want to use SecureScreen to limit access to some pages but I also want to use ErrorScreen so that if there is any Exception then the user will be taken to custom error page, not the default one. But since in JAVA, you cannot extend from two parents, I have to choose one or the

ErrorScreen and SecureScreen

2003-11-18 Thread Naree Song
Hello, I want to use SecureScreen to limit access to some pages but I also want to use ErrorScreen so that if there is any Exception then the user will be taken to custom error page, not the default one. But since in JAVA, you cannot extend from two parents, I have to choose one or the other. Ha