Questions tagged [usersession]
81 questions
0
votes
1 answer
Does SendNotifyMessage API work across user sessions?
Say, I have a Windows service application and also windowed client applications running in each logged on user session. If I call RegisterWindowMessage in each client app and try to trap that message there. And then also call RegisterWindowMessage…

ahmd0
- 16,633
- 33
- 137
- 233
-1
votes
1 answer
Trying to Retrieve SessionId and trying to save user session
I am working on an app and i need to save the user session.. I am trying to retrieve the user id but somehow the code i've implemented doesn't seem to work..
I want that when the user opens the application.. the app should open from where the user…

Vidur Singh
- 19
- 5
-1
votes
1 answer
How to manage a User Session on a AWS server?
I have my backend in JAVA and website is hosted on AWS server(2 or more). What is the best possible way to handle a user session on my website?
Looked into HTTPSession but the drawback with it is that session of one server will not have same…

akg
- 670
- 10
- 30
-1
votes
2 answers
How to execute perl Win32::GuiTest functions when the user session is locked
I tried to execute the bellow perl script and locked the user session...
$n=15;
while($n>0)
{
print "$n,";
$n--;
sleep(1);
}
It worked as usual without any extra code..., There was no output when i locked the session, as i locked the session…

user3274006
- 89
- 8
-1
votes
1 answer
applicationWillEnterForeground and storyboard check
I have a ios App where I used the storyboards.
I have a question: When the user return from background I will check if the user session is still valid. If this session is expired I would to send the user to login controller (second step on my…

Safari
- 11,437
- 24
- 91
- 191
-3
votes
1 answer
Global Controller/Method in Objective c
I'm building an iPhone App which requires to be logged in all the time. Now I don't know if there is a global place to put in something like:
If not_logged_in -> go to LoginView

Andre Zimpel
- 2,323
- 4
- 27
- 42