mod_jk error -60

2006-03-29 Thread Earnie Dyke
Can anyone tell me what a -60 error is? [Wed Mar 29 13:56:11 2006] [error] jk_ajp_common.c (961): Can't receive the response message from tomcat, network problems or tomcat is down (10.1.1.80:8009), err=-60 Earnie! - To

Re: mod_jk error -60

2006-03-29 Thread Rainer Jung
In case of an error this line will print errno as a negative number. More precisely: #if defined(WIN32) || (defined(NETWARE) defined(__NOVELL_LIBC__)) ... errno = WSAGetLastError() - WSABASEERR; ... #endif ... do some read from network ... return (errno 0) ? -errno

Re: mod_jk error -60

2006-03-29 Thread Rainer Jung
I don't know, how correct it is, but the following table looks helpful: http://www.ioplex.com/~miallen/errcmp.html It says, that 60 is a time out (ETIMEDOUT) on FreeBSD 5.2.1, OSX 10.3.8 and OSF1. Rainer Jung wrote: In case of an error this line will print errno as a negative number. More