Hi,
Strange problem when trying to store value in my session and retrieve it in exec block behind. Here a sample :
exec(
session => {
val toto = “totototototo”
session.set(“cookieval”, toto)
}
)
exec(
session => {
println(session)
session
}
)
when printing my session variable, nothing about my cookieval attribute… Anything missing ?