How are cookies passed in the HTTP protocol?
+1
A:
Cookies are passed as HTTP headers, both in the request (client -> server), and in the response (server -> client).
Douglas Leeder
2010-08-12 11:31:13
A:
Cookies are passed in ResponseHeader of HttpServletResponse object by server. Read this for more details in context of Java Servlets.
Tushar Tarkas
2010-08-12 11:32:54
The question specifically asked about the HTTP protocol itself, not how Java does it.
cHao
2010-08-12 11:35:25