Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm writing a small webserver in Java, using HttpCore for most Http requests/responses etc.
Now I would like to be able to create, store and load cookies. I can't find anything in HttpCore and I'm not that familiar with other libraries. Is there an exisiting library (preferably with a working example) to handle cookies?

Edit: I see I was a bit confused regarding the usage of cookies. I'm not completely sure how it works, but I want to keep a session, and to access session variables from the web server. How can I do this? If the browser saves cookies, does it send them to the server? How do I access them?

share|improve this question
I hope you've read about "What HttpCore is NOT". A server on it's own will not create, load and store cookies unless it is told to do so. You'll need to build an API for your server that will be invoked by a developer (for instance). Take a look at the underlying workings of Tomcat, if you need help. – Vineet Reynolds Jun 11 '11 at 15:40
Well, then I would appreciate you pointing me in the direction of a library that DOES handle cookies. – Amir Rachum Jun 11 '11 at 15:43
I've edited my comment. Take a look at a servlet container, which is the easiest way to figure out how this works. Avoid looking at HttpClient for that gives you the client-side view of the scenario. – Vineet Reynolds Jun 11 '11 at 15:44

1 Answer

up vote 3 down vote accepted

Session support in a server, is typically built using an object store. A simple object store would be a Map or a Set. The objects in this store ( the values in the case of the Map) have a one-to-one mapping with the concept of a logical session, i.e. for each session created by the server, there will be one item in the store.

Sessions managed by the store may allow for attributes to be associated with them. The list of such attributes may not be known before hand, so you'll need another map for this purpose; the keys would be the attribute names, and the values would be attribute values.

As far as management of the session store is concerned, you'll need to create a new Session in the store, when an API call is made to your server. In simpler words, if a web application decides that it needs to create a session, the server's API must provide the necessary interface to do so. Creating the session object alone is not enough; you'll also need to write the session ID out as a cookie when you first create the session. The API must allow for writing the appropriate response in such a case. You might want to take a look at the Servlet API, specifically for the HttpServletRequest and HttpSession classes, and a servlet container implementation for this purpose.

On the topic of accessing cookies from a request, you'll need to parse the incoming HTTP request headers to check for any cookies sent by the browser. Browsers and other HTTP clients are expected to use the Set-Cookie request header for this purpose. You'll need to ensure that a session object may be returned to the web application only when a valid cookie is supplied in the request.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.