Topic: Avoid a complete page request during an xajax response callback.
I have a member's page that signs in several people into the website (standard) and loads several classes, includes, YAHOO's GUI. Takes a short while with the load, but not too bad at the moment. During that load, which is in the standard main.inc include on all pages, it checks if a member is signed in and if so, completes the page, or if not, sends them to the sign in page again.
On to the xajax ..
In that first page, I currently adding some xajax callbacks that run AFTER the page is pushed to the member's computer (just a plain javascript execute of xajax_getMail, xajax_getContacts, ... ). Noticing that on these callbacks, each one is basically reprocessing the webpage just like someone has come to that page for the first time.
.. so say, the first standard load of the page takes 5 secs .. each xajax callback adds another 5 secs on top.
Wondering how to attack this problem.