2

I'm running my servlet on Tomcat 7. When retrieving cookies with the request.getCookies(); the values returned are weird strings "8267663C31A2F33C16B7C0D864874DC4"

Can anyone tell me what this is?

Output from 2 text form data:

8267663C31A2F33C16B7C0D864874DC4

test

test

8267663C31A2F33C16B7C0D864874DC4

Thanks,

Nguyen

Community
  • 1
  • 1

2 Answers2

5

That looks very much like a session ID. Is the name of that cookie "JSESSIONID" ?

Costi Ciudatu
  • 37,042
  • 7
  • 56
  • 92
1

Probably looks like a jsessionid used for associating a given user with a servlet session on the server side.

Community
  • 1
  • 1
Sanjay T. Sharma
  • 22,857
  • 4
  • 59
  • 71