I am a big fan of the Apache shared libraries, as they tend to span many utilities that I usually have to write to myself. I recently started working on a server-side project, and I find many cases where classes by default overlook obvious functionality:
Cookie getCookie(String name) method Cookie getCookie(String name) required.- An easy way is needed to get information about a request for a URL (besides calling
getContextURL() and parsing it) - Something that will simplify basic and digest authentication will be enjoyable.
I suspect that I will find even more when I work on this project.
This is similar to the things that should be somewhere in the library. Is there such a library?
source share