Fw: Urgent: Issue with Tomcat Clustering

2004-05-24 Thread Filip Hanik - Dev
try without mod_jk with another load balancer first, pen (http://siag.nu/pen) or balance (http://balance.sourceforge.net) - Original Message - From: Vikas Gupta [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Sunday, May 23, 2004 12:07 PM Subject: Urgent: Issue with

Re: Trying to get a Cluster/Session Replication working

2004-05-20 Thread Filip Hanik - Dev
. They are diffent sized boxes , so one starts faster than the other I still get the same two errors Randy -Original Message- From: Filip Hanik - Dev [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 19, 2004 4:02 PM To: Tomcat Users List Subject: Re: Trying to get a Cluster/Session Replication

Re: Is there any way to check # of Records in RecordSet

2004-05-20 Thread Filip Hanik - Dev
ResultSet rs; int i = 0; while( rs.next() ) { i++; } If the cursor is non scrollable, this will only work once. It is better for you to execute a Select count(1) ... query, to find out how many results you would get back. Or even better, execute a stored procedure that returns the count as an

Re: Is there any way to check # of Records in RecordSet

2004-05-20 Thread Filip Hanik - Dev
first code = result set not scrollable, you can only loop through it once Filip; - Original Message - From: soh_mah [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, May 20, 2004 9:50 AM Subject: RE: Is there any way to check # of Records in RecordSet Thanks

Re: session data in Tomcat 5

2004-05-20 Thread Filip Hanik - Dev
setAttribute(ml,null); is the same as removeAttribute(ml); just an fyi :) - Original Message - From: Ben Souther [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, May 20, 2004 10:24 AM Subject: Re: session data in Tomcat 5 On Thursday 20 May 2004 10:15 am,

Re: java.lang.ClassCircularityError

2004-05-19 Thread Filip Hanik - Dev
where are your classes? if you put them in server/lib or server/classes and not in your webapp, do you still get the error? Filip - Original Message - From: Viktor Matic [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, May 19, 2004 11:04 AM Subject: Re:

Re: Trying to get a Cluster/Session Replication working

2004-05-19 Thread Filip Hanik - Dev
two things: 1. export LD_ASSUME_KERNEL=2.4 before you start tomcat (add it to your startscript) 2. Starting the two instances at the exact same time, no instance has a state to replicate, wait 5 seconds with one once the servers have been running for a while, it will request state from your

Re: Trying to get a Cluster/Session Replication working

2004-05-19 Thread Filip Hanik - Dev
. That is not very possible in my envirnment. They are diffent sized boxes , so one starts faster than the other I still get the same two errors Randy -Original Message- From: Filip Hanik - Dev [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 19, 2004 4:02 PM To: Tomcat Users List Subject: Re

Re: taglib - O'Reilly tutorial problem

2004-05-18 Thread Filip Hanik - Dev
looks like you are running compiled code against different version jar/class files. NoSuchMethod error means that the method the code is expecting doesn't exist, this happens when you compile your code using a library of version A, then deploy the same code with library of version B and B doesn't

Re: Persistent workspace

2004-05-18 Thread Filip Hanik - Dev
Can it be done? The safest bet is to write to the user's (the user running your tomcat) home directory. The property is user.home (System.getProperty(user.home) Filip - Original Message - From: Simon Brooke [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, May

Re: hwo to discover which app is is wating memory

2004-05-17 Thread Filip Hanik - Dev
use a profile, you will discover it instantly - Original Message - From: Emerson Cargnin [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, May 17, 2004 3:29 PM Subject: Re: hwo to discover which app is is wating memory That's was I thought at first. Hadn't thought

Re: Clustering problem with web.xml

2004-05-13 Thread Filip Hanik - Dev
check your web.xml for a mistake The markup in the document following the root element must be well-formed. or open it in an xml editor, it will tell you right away Filip - Original Message - From: Gabriele Paciucci [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 13, 2004

Re: Do log

2004-05-13 Thread Filip Hanik - Dev
you can use log4j, and you can have Tomcat do the same, it is just matter of configuration search a thread by me with log4j in the subject line. Filip - Original Message - From: Teixeira, Jorge (Informaker) [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Thursday, May

Re: tomcat clustering

2004-05-12 Thread Filip Hanik - Dev
', 'javax.servlet.jsp.jstl.fmt.request.charset', 'UTF-8') that's mean it's working or not ? thank you for answer. --- Filip Hanik - Dev [EMAIL PROTECTED] a écrit : Caused by: java.io.NotSerializableException: - Original Message - From: keita elhadji [EMAIL PROTECTED] To: [EMAIL

Re: tomcat clustering

2004-05-10 Thread Filip Hanik - Dev
Caused by: java.io.NotSerializableException: - Original Message - From: keita elhadji [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, May 10, 2004 4:52 AM Subject: tomcat clustering Hi, i have a problem with mod_jk2 . I have two PC with tomcat5.019 1st PC name is :

Re: Clustering with 5.0.19

2004-05-07 Thread Filip Hanik - Dev
be useful to paint a more complete picture! Sam. -Original Message- From: Filip Hanik - Dev [mailto:[EMAIL PROTECTED] Sent: 05 May 2004 16:48 To: Tomcat Users List Subject: log4j logging in Tomcat WAS: Clustering with 5.0.19 you need to enable it at the logger level, the code

Re: Tomcat 4 Clustering

2004-05-07 Thread Filip Hanik - Dev
think it must be an other problem. Could it be, that java miss some nativ libraries? The tomcat's are running in a chroot-environment. Jens -Ursprüngliche Nachricht- Von: Filip Hanik - Dev [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 6. Mai 2004 18:18 An: Tomcat Users List Betreff: Re

Re: unstoppable thread

2004-05-07 Thread Filip Hanik - Dev
set the thread to be a daemon thread, that should make the vm exit Filip - Original Message - From: Shapira, Yoav [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Friday, May 07, 2004 1:30 PM Subject: RE: unstoppable thread Hi, I have a web application which, when

Re: Tomcat 4 Clustering

2004-05-06 Thread Filip Hanik - Dev
this code uses Java.nio packages. if you are running this as a non privileged user, there is a chance that it fails to open the socket. as you can see, the problem is in native code, java.io.IOException: No such file or directory at sun.nio.ch.DevPollArrayWrapper.init(Native Method)

Re: Tomcat 4 Clustering

2004-05-06 Thread Filip Hanik - Dev
I responded on tomcat user - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, May 06, 2004 7:26 AM Subject: Tomcat 4 Clustering Hi Filip, I'm playing with Clustering on Tomcat 4.1.30 (1 Solaris-Server called eules with 2 tomcat

Re: java.library.path

2004-05-05 Thread Filip Hanik - Dev
are you saying that passing in -Djava.library.path=xxx in catalina.bat (JAVA_OPTS) doesn't work for you? - Original Message - From: Cocalea, Eugen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, May 05, 2004 3:45 AM Subject: java.library.path Hello, In the file

Re: Clustering with 5.0.19

2004-05-05 Thread Filip Hanik - Dev
useDirtyFlag is not used with the DeltaManager, only with the SimpleTcpReplicationManager. As the name suggest, the DeltaManager only replicates deltas, and hence it can only replicate when the session is dirty. The clustering configuration has changed a little bit since 5.0.19, to make it more

log4j logging in Tomcat WAS: Clustering with 5.0.19

2004-05-05 Thread Filip Hanik - Dev
happier going with a release build if possible. Kind regards, Sam. -Original Message- From: Filip Hanik - Dev [mailto:[EMAIL PROTECTED] Sent: 05 May 2004 15:31 To: Tomcat Users List Subject: Re: Clustering with 5.0.19 useDirtyFlag is not used with the DeltaManager, only

Re: virtual hosting

2004-05-04 Thread Filip Hanik - Dev
you should be able to do it just using virtual hosts in httpd.conf. play around with it, you may add one section for mod_jk for each virtual host FIlip - Original Message - From: Charles Jordan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 04, 2004 3:31 PM Subject: virtual

Re: Tomcat Crashes with this is catalina.out

2004-05-04 Thread Filip Hanik - Dev
Surely we must be dumb f***s who don't having a rough day, arent we? :) Filip - Original Message - From: Shapira, Yoav [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, May 04, 2004 3:46 PM Subject: RE: Tomcat Crashes with this is catalina.out Hi, Tried the sun

<    1   2   3