Error handling - are these bugs with myfaces ?

2004-12-09 Thread Cote . Mark
I have found some unexpected behaviour with regards to error handling, both with error mapping in web.xml as well as with the Error page tag in jsp's.     Error mapping in web.xml: 1) I cannot map custom errors in web.xml since all the errors thrown seem to be wrapped with a FacesException

Re: Error handling - are these bugs with myfaces ?

2004-12-09 Thread Heath Borders
Try running your JSP outside of Tiles. I'm guessing you're getting a "response already committed" because you are flushing your Tiles content somewhere. Make sure that all your Tiles do not have flush="true", as this will cause content to start being pushed over the wire. On Thu, 9 Dec 2004 11:3

RE: Error handling - are these bugs with myfaces ?

2004-12-09 Thread Cote . Mark
Title: RE: Error handling - are these bugs with myfaces ? Good idea, Heath, but all tiles & jsp related *flushes* were false. BTW, there was much discussion on the sun forum on this subject and they basically said to use the *redirect* functionwhich does not work with myfaces, bec