I have no experience with session handling, and probably I'm just having a trouble getting the idea, but there is absolutely nowhere where the sessionId problem is explained.
First, I read this Google article and there is this statement:
String sessionID = /*(**Get sessionID from server's response to your
login request.**)*/;"
So I started reading more, and I found this tutorial - very helpful one, but it contains this line:
String sessionID = result.getSessionId();
and I do not simply know what to do with it! I have no such method defined in my User object (which is a result from a server response here). I can create it, but I don't know what to write in it. How can I do this?