That's it !
It's possible to see it, because the 2 html results are concatenated..
The results from the pushlet that was on server1.. are still at the beginning of the HTML,
then there are the contents from the pushlet that is on server2.
It's as if the loadbalancer(mod_jk) x browser connection stays alive, eventhough
loadbalancer x server1 connection goes down.
eg.
<html><head>
<script type="text/javascript" src="file.js"
></script>
</head>
<body></body></html>
<script>parent.setServerName('server1');</script>
<script language='javascript'>event(.....);</script>
<script language='javascript'>event(.....);</script>
<script language='javascript'>event(.....);</script>
<html><head>
<script type="text/javascript" src="file.js"
></script>
</head>
<body></body></html>
<script>parent.setServerName('server2');</script>
<script language='javascript'>event(.....);</script>
<script language='javascript'>event(.....);</script>
<script language='javascript'>event(.....);</script>
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4160337#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...