Re: Session replication configuration file question

2013-12-30 Thread Nir A
changed to tomcat1_ip_adress - Tomcat1 and the same on the tomcat 2 machine. now it works. thanks for your efforts. On Sun, Dec 29, 2013 at 8:43 PM, Daniel Mikusa wrote: > On Dec 29, 2013, at 10:51 AM, Nir A wrote: > > > Hi, > > > > If i want to creat

Session replication configuration file question

2013-12-29 Thread Nir A
Hi, If i want to create a cluster of 2 tomcats: Tomcat1 - ip 111.111.111.111 Tomcat2 - ip 222.222.222.222 Where exactly the in the server.xml i should say that my cluster contains both of these ips? If you will take alook at my server.xml (which i copy pasted from the tutorial) it looks like th

Session replication does not work - Continued

2013-12-29 Thread Nir A
Hi, So we have 3 tomcats in our cluster and we are failing to make them replicate our sessions still. Our IT guy said it might has something to do with the machines of the tomcats. He said that since the machines the tomcats in the cluster are installed at are Virtual machines there might be a pr

Tomcat work directory is not creating a sessions.ser file

2013-12-29 Thread Nir A
Hi, We had problems regarding sessions replication. We contact you before and after you examined our logs you actually told us that session replication is indeed talking place although we didn't have session replication. Now, after further investigation we think we are on the problem source: If

Re: Tomcat Clustering - when the tomcat instances are on different machines

2013-12-17 Thread Nir A
ew session on tc2 the outcome is exactly like stage 3) Thanks, On Tue, Dec 17, 2013 at 1:31 PM, Keiichi Fujino wrote: > 2013/12/17 Nir A > > > In the tomcat manager We can see that our web application called "HATest" > > is having the sessions. > > Its a small dem

Re: Tomcat Clustering - when the tomcat instances are on different machines

2013-12-17 Thread Nir A
In the tomcat manager We can see that our web application called "HATest" is having the sessions. Its a small demo of a shopping cart that keeps the items in the session. here is an example of a session we created in on of the tomcats nodes: Details for Session 33265A9C6318C014ADA92220A76F566C S

Re: Tomcat Clustering - when the tomcat instances are on different machines

2013-12-17 Thread Nir A
Ok , So now we started node 1 , waited until it was up and running and only then we started node2. There are no warnings \ errors on the log files. Only problem is that our session's are not being replicated. here are the logs of the catalina: Node1: Dec 17, 2013 10:52:21 AM org.apache.catali

Tomcat Clustering - when the tomcat instances are on different machines

2013-12-16 Thread Nir A
Hi, We started working on our next generation platform project. One of our requirement is to have session replication via tomcat clustering. We have managed to set up a cluster with replication when the tomcats (7.0.47) were both on the SAME machine as a POC. Now as we are setting up the product

Re: Websockets with tomcat clustering and session replication

2013-12-02 Thread Nir A
ng f5 will reconnect the websocket and the attributes are being copied). Thanks. On Dec 2, 2013 8:51 PM, "Rossen Stoyanchev" wrote: > On Sun, Dec 1, 2013 at 4:33 PM, Nir A wrote: > > My POC web application has one html page with javascript web socket > > send\recieve

Re: Websockets with tomcat clustering and session replication

2013-12-02 Thread Nir A
mcat doesn't notice anything > > And also is it not a "spec" or behavior requirement that you don't hold on > to your http session objects outside of requests? > > > > > On 1 December 2013 15:33, Nir A wrote: > > > Hi, > > > > Ive ask

Websockets with tomcat clustering and session replication

2013-12-01 Thread Nir A
Hi, Ive asked here before about how do i get a session replication over websockets sessions. Mark Thomas answered me that i should try and link the httpsession with the websocket and then i will gain the replication abilities. So, I listended and implemented it just like in this url: http://stac

Tomcat session replication via backmanager - attributes are not being saved on backup session

2013-12-01 Thread Nir A
Hi, I'm using tomcat clustering of 2 tomcats, and session replication via backup manager. on session creation in one tomcat instance, the other tomcat replicates the session successfully but the attribute list is empty no matter how much i add to it. (the primary session attribute list is fine) a

Re: Tomcat sessiin replication not working

2013-11-28 Thread Nir A
Thats probably it. Thanks On Nov 28, 2013 7:55 PM, "Neven Cvetkovic" wrote: > On Thu, Nov 28, 2013 at 12:32 PM, Nir A wrote: > > > Hi, > > Ive set up a cluster of tomcats > > They use back up manager for session replication. > > > > The replicat

Tomcat sessiin replication not working

2013-11-28 Thread Nir A
Hi, Ive set up a cluster of tomcats They use back up manager for session replication. The replication works on my web app. Today i added another web application, but when a new session is created, no replication takes place. The original web application still replicates fine. Any ideas why?

Re: Tomcat Websocket failover

2013-11-27 Thread Nir A
Thanks! On Tue, Nov 26, 2013 at 11:48 AM, Mark Thomas wrote: > On 25/11/2013 10:58, Nir A wrote: > > Hello, > > > > In our current generation web application we used session replication > with > > tomcat clustering. (and a load balancer) > > That way, we rec

Tomcat Websocket failover

2013-11-25 Thread Nir A
Hello, In our current generation web application we used session replication with tomcat clustering. (and a load balancer) That way, we recieved an auto failover when a client sends an ajax request to a tomcat node that failed. In our next generation web application, We would like to have a simil