Re: problems with mod_jk 1.2.32 and Jetty 6.1.26

2012-08-21 Thread Veit Guna
Well, what can I say - thank you :)! Your tip worked like a charm. Am 21.08.2012 16:22, schrieb Rainer Jung: > On 21.08.2012 10:34, Veit Guna wrote: >> Hi. >> >> I'm using Atlassian Fisheye 2.7.15 (uses Jetty 6.1.26) under Ubuntu >> 12.04 >> with mod_jk

problems with mod_jk 1.2.32 and Jetty 6.1.26

2012-08-21 Thread Veit Guna
Hi. I'm using Atlassian Fisheye 2.7.15 (uses Jetty 6.1.26) under Ubuntu 12.04 with mod_jk 1:1.2.32-1 and Apache 2.2.22-1ubuntu1. After I upgraded mod_jk from 1.2.31 to 1.2.32 Jetty isn't working anymore throwing the exception below. Any ideas why that is happening? What changed through that ver

Re: Deploy from ant

2007-01-05 Thread Veit Guna
irectory anywhere in the filesystem. > Thank you all. > Cheers, > Carlos > > On 1/4/07, Veit Guna <[EMAIL PROTECTED]> wrote: >> Hi. >> >> All I can say is, that you don't want to deploy your war file through an >> ant task to tomcat. Believe me. Not for d

Re: Deploy from ant

2007-01-04 Thread Veit Guna
Hi. All I can say is, that you don't want to deploy your war file through an ant task to tomcat. Believe me. Not for development. For a small change in the webcontent you have to redeploy the whole app - very annoying. I used that half a year. Now I use the Eclipse WTP Project for development wit

Re: invalid sessions

2006-12-18 Thread Veit Guna
I check for invalidated sessions (timeout) the following way: if (! lRequest.isRequestedSessionIdValid() && lRequest.getRequestedSessionId() != null) { log.debug("session expired"); } else { log.debug("the normal way"); } regards, Veit Asensio, Rodrigo schrieb: > Hi guys, Im tr

Re: Avoiding requests when session is expired

2006-12-14 Thread Veit Guna
Hi. I created a Filter that "captures" an invalid session before any other Filter in my application gets invoked. Then I redirect to a "Session Expired" page. Works for me. regards, Veit Asensio, Rodrigo schrieb: > Hi guys, is there any way in tomcat to capture or be notified that a > user whos

Global custom 503 error page

2006-11-21 Thread Veit Guna
Hi. Is it really true, that one can't create at least a global error page for 503 errors in tomcat? I understand, that a webapp that is stopped, can't serve it's own custom 503 error page. Sounds clear. But a general one should be possible?! I'm using tomcat behind apache and if tomcat isn't star

Re: UndeployTask did not delete webapps directory

2006-08-19 Thread Veit Guna
Hi. I guess you're using Tomcat under Windows. There's a problem with freeing resoures unter Windows. Add antiResourceLocking="true" to your global Context.xml like: That worked for me. regards Veit wolverine my schrieb: > Hi! > > What could be the reason the org.apache.catalina.ant.Undep

error-page problem with tomcat 5.5.17

2006-08-11 Thread Veit Guna
Hi. I've got a strange problem with the error-page directive and tomcat 5.5.17 + myfaces 1.1 + facelets 1.1. I have the following in my web.xml: ... java.lang.Throwable /pages/error.html 500 /page