Re: sendRedirect problem

2010-02-23 Thread Donn Aiken
Glad the issue is solved. If I had to guess, I bet OC4J and Tomcat buffer the output differently, and that is why you see the output from xxx.jsp in one, and the output from yyy.jsp in the other. DJ On Tue, Feb 23, 2010 at 7:44 AM, Desbaratizador wrote: > > The addition of a return after sendRe

Re: sendRedirect problem

2010-02-23 Thread Desbaratizador
The addition of a return after sendRedirect put the code to work on Apache Tomcat 5.5. Remarks: even in the absence of that return the redirect works in JDeveloper debugger Thanks Desbaratizador Donn Aiken-2 wrote: > > One other thing to check - there is a return after the sendRedirect in

Re: sendRedirect problem

2010-02-23 Thread Donn Aiken
One other thing to check - there is a return after the sendRedirect in the scriplet, yes? Could you share a stripped down version of the pages? These beans are also presumably in session scope? DJ On 2/23/10, Desbaratizador wrote: > > > Environment: > - Apache Tomcat 5.5 > - OS and JVM are (ve

Re: sendRedirect problem

2010-02-23 Thread Pid
On 23/02/2010 11:42, Desbaratizador wrote: Environment: - Apache Tomcat 5.5 - OS and JVM are (very probably) not relevant - Code WORKS on JDeveloper debugger (Windows XP and vista, various JVM's) - Code NOT WORKS when deployed to Apache Tomcat 5.5 (tests made on various machines, Windows Serve

Re: sendRedirect problem

2010-02-23 Thread Desbaratizador
Environment: - Apache Tomcat 5.5 - OS and JVM are (very probably) not relevant - Code WORKS on JDeveloper debugger (Windows XP and vista, various JVM's) - Code NOT WORKS when deployed to Apache Tomcat 5.5 (tests made on various machines, Windows Server 2008, ...) xxx.jsp and yyy.jsp are regula

Re: sendRedirect problem

2010-02-22 Thread Donn Aiken
If I had to guess, there is a missing FacesContext.responseComplete(); Prior to the sendRedirect call. DJ On 2/22/10, Pid wrote: > On 22/02/2010 12:39, Desbaratizador wrote: >> >> Hi >> >> I have a faces (JSF) app developed with JDeveloper, in a JSP i have a >> sendRedirect like this: >> res

Re: sendRedirect problem

2010-02-22 Thread Pid
On 22/02/2010 12:39, Desbaratizador wrote: Hi I have a faces (JSF) app developed with JDeveloper, in a JSP i have a sendRedirect like this: response.sendRedirect("xxx.jsp"); Does xxx stand for something and if so, what? (Don't tell us if the actual page name is something exciting and propri