>
> Not sure I follow 100% - however I am using session (for the auto retry 
>> connection if failed - here's my JS) - what I want to see if for any single 
>> channel - only info for that channel. How couldI make this happen?  ANd 
>> thanks in advance.
>
>  
 unction start_ape() {
 //#############APE##################
 var client = new APE.Client();
 //Load APE client
 client.load();
 client.addEvent('load', function() {
  client.core.start({'name': '' + Date.now() + ''});//Start with a random 
name
 });
 client.addEvent('ready', function() {
  clearInterval(APE_CONNECT);
  $('#APE_CONNECTION_DIV').hide();
  channel_name = online_auction_id+"_manager";
  client.core.join(channel_name);
  //alert(channel_name);
  setTimeout(function() {
   url = webroot + "online_live_auctions/manager_init/" + 
$('#Online_Live_Auction_id').text();
   $.post(url, {  }, function(data){
   
   });
  }, 1000);
 });
 
 client.onError('004', function() {
  start_ape();
 });
 client.addEvent('apeDisconnect', function() {
  $('#APE_CONNECTION_DIV').show();
 });
 
 client.addEvent('restoreBegin', function() {
  //$('#APE_CONNECTION_DIV').hide();
 });
 
 client.addEvent('restoreEnd', function() {
  $('#APE_CONNECTION_DIV').hide();
 });
}

-- 
-- 
You received this message because you are subscribed to the Google
Groups "APE Project" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/ape-project?hl=en
---
APE Project (Ajax Push Engine)
Official website : http://www.ape-project.org/
Git Hub : http://github.com/APE-Project/

--- 
You received this message because you are subscribed to the Google Groups "APE 
Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to