Where are HostedConnection attributes stored?

I’m implementing user logins, and I need to store variables on the client. I know about “HostedConnection.setAttribute()”, but what I’d like to know is: are attributes stored on the client or server?

It’s stored in the HostedConnection object so on the server side.

1 Like

Ok, thanks!

Yes, hosted connection attributes are server-side session data for that client.

The client client already has all of the client specific data that it wants… because it is the client. On the server it is necessary to keep track of per-client information separate from the other clients… so HostedConnection makes this easier.

1 Like