Subject: How server can determine a new connection has been requested
I want to implement the multiple connections support on the server, a user can logged in from many devices, on every login of the user should i consider it a new request and create a connection for it.
what is the definition for xmpp server connection, if a client login from chrome and inter explorer, should i consider it two connections and make server connections.
is their any xep available which explain multiple connections?
I know their is a session id which creates on every login, session 1 of user1 can't see the messages of seesion2 of user1, message carbon functionality is their.
When a client logout we get it's connection from server connection and call dispose.
Connection=GetCOnnectionOfBilalFromServerConnection
Connection.dispose() on logout.
what is the definition for xmpp server connection, if a client login from chrome and inter explorer, should i consider it two connections and make server connections.
is their any xep available which explain multiple connections?
I know their is a session id which creates on every login, session 1 of user1 can't see the messages of seesion2 of user1, message carbon functionality is their.
When a client logout we get it's connection from server connection and call dispose.
Connection=GetCOnnectionOfBilalFromServerConnection
Connection.dispose() on logout.