S.No Session State Cookies 1Session can store any type of data because the value is of datatype of "object"Cookies can store only "string" datatype2These are stored at Server sideThey are stored at Client side3Session are secured because it is stored in binary format/encrypted form and it gets decrypted at server Cookie is non-secure since stored in text format at client side4Session is independent for every client i.e individual for every clientCookies may or may not be individual for every client5There is no limitation on size or number of sessions to be used in an applicationDue to cookies network traffic will increase.Size of cookie is limited to 40 and number of cookies to be used is restricted to 20.6For all conditions/situations we can use sessionsOnly in few situations we can use cookies because of no security7We cannot disable the sessions.Sessions can be used without cookies also(by disabling cookies)We can disable cookies8The disadvantage of session is that it is a burden/overhead on serverSince the value is string there is no security9Sessions are called as Non-Persistent cookies because its life time can be set manuallyWe have persistent and non-persistent cookies
Wednesday, August 29, 2012
Difference between Session and Cookies
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment