Open URL of same application from JS window.open creating a new session

0
Opening the URL of same application in multiple tabs manually in one browser it is using the same session and we able to do action independently, but if open one URL and from there if use links for others when click on the link its open in new tab and creating the new session and logout current tab session.  Link default action 2.Using the Java script action (window.open())   window.open(url, "_blank");     URL 1: https://xyz.com/link/test?abc=b422d12f-8789-4d3d-8b9c-35a846d9e915 URL 2: https://xyz.com/link/test?abc=f4858fde-7360-4072-942f-aac962932003 URL 3: https://xyz.com/link/test?abc=b665a72a-9626-4ffb-a1b3-71f522110787    
asked
1 answers
0

Have a look at the DeepLinkHandler.java class to gain some insight into what migth be ahppening in your case. The session handling is performed there. YOu could try to start the model from eclipse in debug mode and add a breakpoint to see what decision is made to handle the session in this class.

answered