Re: Regarding compatibility

2012-02-02 Thread Donn Aiken
On Feb 2, 2012 5:01 PM, "André Warnier" wrote: > > Pid wrote: >> >> On 02/02/2012 15:01, Christopher Schultz wrote: >>> >>> David, >>> >>> On 2/2/12 7:50 AM, David kerber wrote: On 2/2/2012 6:25 AM, Pid wrote: > > On 02/02/2012 10:27, bhawana rajpurohit wrote: >> >> Hi, >

Re: Servlet mapping, welcome file and trailing slashes

2010-03-05 Thread Donn Aiken
Gregg - Any chance you could do this in two steps? Could you implement a filter on the url pattern /* . If the request uri is for something in the root, chain it through. If it is not, forward it to the required servlet? Just a thought. DJ On 3/5/10, GreggCarrier wrote: > > I'm having a fr

Re: sendRedirect problem

2010-02-23 Thread Donn Aiken
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

Re: sendRedirect problem

2010-02-23 Thread Donn Aiken
- On JDeveloper the app redirects to xxx.jsp but on Apache Tomcat > 5.5 yyy.jsp is rendered > > > Call responseComplete method before sendRedirect does not solve the > problem... > > > > > > Donn Aiken-2 wrote: >> >> If I had to guess, there is a missi

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: Tomcat dies suddenly

2010-02-12 Thread Donn Aiken
Carl - I did have something like this happen to me - not with Tomcat but with another JEE container. The container would run for a while, without incident, then suddenly simply die, with nothing in any log, and not on any apparent time schedule. We had some code that was manipulating LDAP that h

Re: Tomcat: two context path for one webapp

2009-11-11 Thread Donn Aiken
By any chance, do you have an Apache httpd server in front of this tomcat instance? The first solution that comes to my mind is using mod_rewrite with some rewrite rules on the httpd server so that the web browser client sees http://localhost:8080/YYY but it is really http://localhost:8080/XXX DJ