Originally posted by Eric Pascarello:
Your server is going to come to a crashing halt when it has multiple users. You probably should look at FLEX which is better for real time data.
Eric
Originally posted by Bear Bibeault:
Do you not think that banging on the server every second is a bit excessive? How many pages are doing this sumultaneously?
Originally posted by abhijit deshmukh:
hi pradip,
i am still confused about form auth, using j_security_check after succefull login how web server know which is home page i mean which do we hv any thing where we can specify home page.
Thanks & Regards
Abhijeet
Originally posted by Eric Pascarello:
It is not Ajax, it is how the browser is re-renderinig the page.
The question lies in how are you outputting the data to the page? Some general code may help to get to the bottom of the problem.
Eric
Originally posted by Eric Pascarello:
You are going to be killing your server with a request a second!!
You are going to get flicker if you have to keep rendering the page over and over.
Eric
Originally posted by Eric Pascarello:
I just glanced over that code very quickly. If you keep replacing the content on the page. Mozilla is going to flicker. I personally would do this, cache your request into a variable. Next time the request is made compare the new reult with the one you stored. If they are the same do not process the data. If they differ then process and store this into the cache.
It will save CPU on the user's computer and would get rid of the flicker.
Eric