Merge branch 'BF-8779' into 'master'
#8779: Make the authToken available as sessionId to called services. See merge request !4
Showing
1 changed file
with
3 additions
and
0 deletions
... | @@ -454,8 +454,11 @@ public class DirectControlServlet extends HttpServlet { | ... | @@ -454,8 +454,11 @@ public class DirectControlServlet extends HttpServlet { |
454 | dispatcher.runSync(checkSessionService, checkSessionServiceContext); | 454 | dispatcher.runSync(checkSessionService, checkSessionServiceContext); |
455 | } | 455 | } |
456 | } | 456 | } |
457 | } else { | ||
458 | authToken = null; | ||
457 | } | 459 | } |
458 | } | 460 | } |
461 | context.put("sessionId", authToken); | ||
459 | 462 | ||
460 | Debug.logInfo("USERLOGIN " + context.get("userLogin") + " AUTHTOKEN " + authToken, module); | 463 | Debug.logInfo("USERLOGIN " + context.get("userLogin") + " AUTHTOKEN " + authToken, module); |
461 | 464 | ... | ... |
-
Please register or sign in to post a comment