Native application from servlet (java.net.SocketException: Connection reset by peer: socket write error)

2004-02-10 Thread Veselin Kovacevic
Hi all, We have a servlet based application which open a native application and read some output from them. Sometimes we get an error in tomcat logfile but application work fine. Here is error. Any ideas what is possible problem? 2004-02-09 10:02:26 StandardWrapperValve[default]:

Open native console application from servlet (java.net.SocketException: Connection reset by peer: socket write error)

2004-02-09 Thread Veselin Kovacevic
Hi all, We have a servlet based application which open a native console application and read samo output from them. Sometimes we get an error in tomcat logfile but application work ok. What is happen? Here is error. What is mean? 2004-02-09 10:02:26 StandardWrapperValve[default]:

RE: Problem with ConnectionPool on Linux

2003-11-12 Thread Veselin Kovacevic
implementation doesn't take care of weeding out dead connections you need to add autoReconnect=true to your connection string. HTH, Jon Veselin Kovacevic wrote: Hi, I have o problem with Tomcat 4.1.24 on SuseLinux7.3. Our application has Controller servlet (below) where using connection objects from

RE: Problem with ConnectionPool on Linux

2003-11-12 Thread Veselin Kovacevic
to your jdbc url. As in : jdbc:mysql://127.0.0.1:3306/mydb?autoReconnect=true -Original Message- From: Veselin Kovacevic [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 11, 2003 4:57 AM To: [EMAIL PROTECTED] Subject: Problem with ConnectionPool on Linux Hi, I have o

RE: Problem with ConnectionPool on Linux

2003-11-12 Thread Veselin Kovacevic
: Problem with ConnectionPool on Linux The new version of DBCP should be able to cope with this as well. I tested it with MaxDB and it works ok. Veselin Kovacevic wrote: Now, everything working fine. :) Thanks Jon. -Original Message- From: Jon Wingfield [mailto:[EMAIL PROTECTED] Sent

Problem with ConnectionPool on Linux

2003-11-11 Thread Veselin Kovacevic
Hi, I have o problem with Tomcat 4.1.24 on SuseLinux7.3. Our application has Controller servlet (below) where using connection objects from connection pool. When tomcat started, application working fine and everything OK that day. But next day when we try to start application we get error message

How I can share sessions between applications?

2003-10-14 Thread Veselin Kovacevic
How I can share sessions between applications on same server? Veso