Currently two services each running different version of play
they both share same Secret Key
as well as same session domain
Play Version 2.2.6:
example of cookie Value:
b14219d56033ca9aa888a406b31872f5623b892f-myKey=myValue
Play Version 2.6.7
example of cookie Value:
eyJhbGciOiJIUzI1NiJ9.eyJkYXRhIjp7Imhhc2hlZE1haWwiOiIwN2Q3YzMwODFhYzk0NTljZTcxYmNhMzhhZjdiNjM5MSJ9LCJuYmYiOjE1MTkyMTI1ODMsImlhdCI6MTUxOTIxMjU4M30.eLJr0uQxo3CxSYewHcGbvSZh0IoFybolYa1gdawalyg
So I have a multiple part question:
- why are the way sessions stored are different? in earlier version I can see each of the key&values whereas the new version is encoded.
- are session mechanism compatible (i.e. how can I use session values between them?)