Re: Session Management problem in flask application

2024-04-04 Thread Aakash Rathor
Thank you very much @Jens for more useful information On Thursday, April 4, 2024 at 9:54:49 PM UTC+5:30 Jens wrote: > 2)i wants to test my flask app in same browser but i wants to different > user login and if new user login then previous user don't logout > automatically > > > If you use

Re: Session Management problem in flask application

2024-04-04 Thread Aakash Rathor
thank you @Thomas Broyer for providing very important and different approach i will try and then what was the working of app ,i will inform you On Thursday, April 4, 2024 at 7:52:15 PM UTC+5:30 Thomas Broyer wrote: > On Thursday, April 4, 2024 at 2:21:36 PM UTC+2 aakashrathor@gmail.com >

NoClassDefFoundError on a particular class while running gwt:codeserver

2024-04-04 Thread Mukeya Kassindye
Hi, I can't seem to be able to point out what dependency I am missing while trying to run my gwt application in Devmode with gwt:codeserver. I can build the program, compile it and deploy it without a problem. However when I am trying to run it in devmode I am having this error :

Re: Session Management problem in flask application

2024-04-04 Thread Jens
2)i wants to test my flask app in same browser but i wants to different user login and if new user login then previous user don't logout automatically If you use Chrome or a Chrome based browser then you could also create two chrome profiles. Profiles are fully independent of each other

Re: Session Management problem in flask application

2024-04-04 Thread Thomas Broyer
On Thursday, April 4, 2024 at 2:21:36 PM UTC+2 aakashrathor@gmail.com wrote: ok, thanks again @Thomas Broyer for provide me the information on session and cookies and also read this below conditions and let me this working is wrong or right .. 1)in current situation in my flask app

Re: Session Management problem in flask application

2024-04-04 Thread Aakash Rathor
ok, thanks again @Thomas Broyer for provide me the information on session and cookies and also read this below conditions and let me this working is wrong or right .. 1)in current situation in my flask app multiple user login possible but browsers also have different means one user login

Re: Session Management problem in flask application

2024-04-04 Thread Thomas Broyer
Not sure what more I can say. - "Server-side sessions" use cookies, which are global to the whole browser (not per-tab), so if you want per-tab sessions you have to find another approach than "server-side sessions" - Per-tab sessions are not what most sites/apps do, so users will

Re: Session Management problem in flask application

2024-04-04 Thread Aakash Rathor
thanks @Thoms Broyer can you elaborate more that can help me and clear what you wants to say On Wednesday, April 3, 2024 at 6:02:06 PM UTC+5:30 Thomas Broyer wrote: > On Wednesday, April 3, 2024 at 1:16:58 PM UTC+2 aakashrathor@gmail.com > wrote: > > Hello everyone, > In my flask