Anyone have ideas about this? The session management doesn't seem to accommodate the use case of logged in more than once. A user seems to only be able to be logged in somewhere one time.
I was able to hack the session management to force a sessid, but I'm not convinced this is the best way, and has some bad corner case bugs. So I have defaulted to starting random sessions for all my users, and using a shared secret "channel" the user listens on, which is really a multipipe, so I can have multiple of the same user join this channel. Are there any concerns with this? Thanks, Johnathan On Jul 18, 12:33 pm, leppert <[email protected]> wrote: > - How do you send a message to a specific user on his/her pipe from > your application (PHP, etc.)? For example, I want to send the user an > updated e-mail count. How would you suggest to do this? Join the user > to a specific user channel and push messages on it? It seems counter > intuitive. > > - How do you resume a session from two different locations? For > example, say I have the same user and he logs in at both home and > work, using his browser. How do you ensure that he gets his same > unipipe/pubid. The session management seems to only work with cookies, > which is fine. But you can't join the same user, or somehow create a > duplicate user session. > > My goal was to somehow capture the user's session id and/or his pubid > in my database upon the user create event, and then both use this in > my application to send the user events, and to allow the same user to > be logged in at multiple locations and multiple platforms (e.g. > iphone). > > Any help or insight is appreciated. > > Thank you, > > Johnathan -- 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/
