Amit T
Amit T

Reputation: 93

Session in Webserver

Can anyone give me link or describe me, How Webservers recognize the continuous requests are coming from same user. Or How webserver maintains sessions not any application.

Upvotes: 0

Views: 410

Answers (3)

pawos
pawos

Reputation: 51

Each session has unique id. Server recognize user by this id. It can be passed for example via cookies or in get parameter in url...

Upvotes: 0

sudmong
sudmong

Reputation: 2036

There are multiple ways via cookies, via hidden fields or session objects. google for 'session management using cookies, using hidden fields, using session objects. you'll get the links.

Upvotes: 1

Related Questions