Hi Team,
I am facing one weird issue for my project.
After going through so many links for session i went with ngIdle provider, below is config code.
IdleProvider.idle(900);
IdleProvider.timeout(300);
KeepaliveProvider.interval(300);
Idle.watch();
Webapi's resides in same domain and if i was idle for 10mins and then if i make any calls to webapi then i get aborted status.
when i investigate further and found some info:
session alive is not happening at client side and server is waiting for 10 mins, after that it aborted and not even calling webapi.
please suggest me what is best way to handle session for angualrjs with webapi's.