dev@grizzly.java.net

Http Client discussion part1

From: Hubert Iwaniuk <neotyk_at_kungfoo.pl>
Date: Wed, 29 Apr 2009 17:12:26 +0200

Hi All,

I've got first step on http client: Controller to connect to GWS and get
response.

My plan is as follows:
 - to be able to provide http client "Reqeust" object inseted of doing it by
hand (calling .write(...)).
 - to parse response and wrap it in Request userfriendly object, that would
encapsulate all the headers cookies and other goodies.
 - persistent client connections.
 - multithreading.

As principle I would like to reuse as much as possible of current code base,
don't like reinventing a wheel, it's provent that current code works.

I would like to get some help of you guys on first step.

I'm trying to reuse Grizzly/Reqeuest Grizzly/Response objects for client.
It seems like this objects are quite bound to internals of grizzly.
Question: should I try reusign them? That would mean refactoring so users
could easily create Reqeusts by themselfs.
As I see it now Request is more of a view of parsed http reqeuest, ti seems
quite hard to create proper Request object by hand.
Also could some Response "serialization" be reused for sending of Reqeust,
so once we have Request object ready to reuse something that would take care
of putting it on a wire properly including taking care of possible streams?

I'll refactor code that I have so it makes more sense and commit stuff in
contrib so other can see what is happening with client and to help :-)

Thank you in advance,
   Hubert.