Filip Hanik - Dev Lists <[EMAIL PROTECTED]> wrote: > > This could be completely unrelated, but let me throw something at you, > maybe it will help > btw. I prefer to run mod_proxy over mod_jk over http, much simpler, > and > in *our* load tests has scaled much better during stress. > > >Response already committed > This can happen if your servlet/jsp has code like this > ....do some stuff > response.sendRedirect(url); > ...do some more stuff > > what has happened here, is that you are trying to write to the > response > buffer even though you earlier indiciated (through sendRedirect or > sendError) that you wouldn't. To correct this, you would have to put a > return statement in your code > > ....do some stuff > response.sendRedirect(url); > return; > ...do some more stuff
I have little controle about it as redirect-url is on of built-in features of Apache Cocoon. I've tried to put sth like: org.apache.jk.core.MsgContext.level = SEVERE into the logging.properties but that unfortunately changes nothing -- T. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]