Play framework Redirect.withSession(“key” -> value) not setting mapping in the request










0















Example code from the Scala Microservices book has a call to Redirect().withSession()



 def login(name: String, password: String) = Action 
if (check(name, password))
Redirect("/auth/index").withSession("user" -> name)
else
BadRequest("Invalid user or password")


but the index method shows that the "user" key is not set in the request



def index = Action implicit request =>

println(request.session.get("user"))
request.session.get("user") match
case Some(user) if isValidUser(user) => Ok(s"Welcome $user")
case Some(user) => BadRequest(s"$user is not a valid user")
case None => BadRequest(
"You are currently not logged in. nPlease login by calling: n" +
"http://localhost:9000/auth/login/admin/1234")



The println() statement shows None.



Why doesn't the "user" key get set in the request session?










share|improve this question
























  • You happen to have more information as to where the Redirect("/auth/index").withSession("user" -> name) is being made and ensuring that the Action where that is located is being called? Everything looks right, but with only one line it is tough to judge.

    – Daniel Hinojosa
    Nov 14 '18 at 18:59











  • Edited to show the entire calling method.

    – Dean Schulze
    Nov 14 '18 at 19:52











  • Seems right to me too. Can you open chrome development tab using F12 and confirm, that same cookie header is being sent over both requests?

    – ygor
    Nov 14 '18 at 20:01















0















Example code from the Scala Microservices book has a call to Redirect().withSession()



 def login(name: String, password: String) = Action 
if (check(name, password))
Redirect("/auth/index").withSession("user" -> name)
else
BadRequest("Invalid user or password")


but the index method shows that the "user" key is not set in the request



def index = Action implicit request =>

println(request.session.get("user"))
request.session.get("user") match
case Some(user) if isValidUser(user) => Ok(s"Welcome $user")
case Some(user) => BadRequest(s"$user is not a valid user")
case None => BadRequest(
"You are currently not logged in. nPlease login by calling: n" +
"http://localhost:9000/auth/login/admin/1234")



The println() statement shows None.



Why doesn't the "user" key get set in the request session?










share|improve this question
























  • You happen to have more information as to where the Redirect("/auth/index").withSession("user" -> name) is being made and ensuring that the Action where that is located is being called? Everything looks right, but with only one line it is tough to judge.

    – Daniel Hinojosa
    Nov 14 '18 at 18:59











  • Edited to show the entire calling method.

    – Dean Schulze
    Nov 14 '18 at 19:52











  • Seems right to me too. Can you open chrome development tab using F12 and confirm, that same cookie header is being sent over both requests?

    – ygor
    Nov 14 '18 at 20:01













0












0








0








Example code from the Scala Microservices book has a call to Redirect().withSession()



 def login(name: String, password: String) = Action 
if (check(name, password))
Redirect("/auth/index").withSession("user" -> name)
else
BadRequest("Invalid user or password")


but the index method shows that the "user" key is not set in the request



def index = Action implicit request =>

println(request.session.get("user"))
request.session.get("user") match
case Some(user) if isValidUser(user) => Ok(s"Welcome $user")
case Some(user) => BadRequest(s"$user is not a valid user")
case None => BadRequest(
"You are currently not logged in. nPlease login by calling: n" +
"http://localhost:9000/auth/login/admin/1234")



The println() statement shows None.



Why doesn't the "user" key get set in the request session?










share|improve this question
















Example code from the Scala Microservices book has a call to Redirect().withSession()



 def login(name: String, password: String) = Action 
if (check(name, password))
Redirect("/auth/index").withSession("user" -> name)
else
BadRequest("Invalid user or password")


but the index method shows that the "user" key is not set in the request



def index = Action implicit request =>

println(request.session.get("user"))
request.session.get("user") match
case Some(user) if isValidUser(user) => Ok(s"Welcome $user")
case Some(user) => BadRequest(s"$user is not a valid user")
case None => BadRequest(
"You are currently not logged in. nPlease login by calling: n" +
"http://localhost:9000/auth/login/admin/1234")



The println() statement shows None.



Why doesn't the "user" key get set in the request session?







scala playframework






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 14 '18 at 19:52







Dean Schulze

















asked Nov 14 '18 at 17:11









Dean SchulzeDean Schulze

3,7831364104




3,7831364104












  • You happen to have more information as to where the Redirect("/auth/index").withSession("user" -> name) is being made and ensuring that the Action where that is located is being called? Everything looks right, but with only one line it is tough to judge.

    – Daniel Hinojosa
    Nov 14 '18 at 18:59











  • Edited to show the entire calling method.

    – Dean Schulze
    Nov 14 '18 at 19:52











  • Seems right to me too. Can you open chrome development tab using F12 and confirm, that same cookie header is being sent over both requests?

    – ygor
    Nov 14 '18 at 20:01

















  • You happen to have more information as to where the Redirect("/auth/index").withSession("user" -> name) is being made and ensuring that the Action where that is located is being called? Everything looks right, but with only one line it is tough to judge.

    – Daniel Hinojosa
    Nov 14 '18 at 18:59











  • Edited to show the entire calling method.

    – Dean Schulze
    Nov 14 '18 at 19:52











  • Seems right to me too. Can you open chrome development tab using F12 and confirm, that same cookie header is being sent over both requests?

    – ygor
    Nov 14 '18 at 20:01
















You happen to have more information as to where the Redirect("/auth/index").withSession("user" -> name) is being made and ensuring that the Action where that is located is being called? Everything looks right, but with only one line it is tough to judge.

– Daniel Hinojosa
Nov 14 '18 at 18:59





You happen to have more information as to where the Redirect("/auth/index").withSession("user" -> name) is being made and ensuring that the Action where that is located is being called? Everything looks right, but with only one line it is tough to judge.

– Daniel Hinojosa
Nov 14 '18 at 18:59













Edited to show the entire calling method.

– Dean Schulze
Nov 14 '18 at 19:52





Edited to show the entire calling method.

– Dean Schulze
Nov 14 '18 at 19:52













Seems right to me too. Can you open chrome development tab using F12 and confirm, that same cookie header is being sent over both requests?

– ygor
Nov 14 '18 at 20:01





Seems right to me too. Can you open chrome development tab using F12 and confirm, that same cookie header is being sent over both requests?

– ygor
Nov 14 '18 at 20:01












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53305475%2fplay-framework-redirect-withsessionkey-value-not-setting-mapping-in-the-r%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53305475%2fplay-framework-redirect-withsessionkey-value-not-setting-mapping-in-the-r%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







這個網誌中的熱門文章

Barbados

How to read a connectionString WITH PROVIDER in .NET Core?

Node.js Script on GitHub Pages or Amazon S3