i am mostly looking at the features which tomcat supports for the HTTP.....
1)UrlEncoding
2)Authentication.
3)Cookies.

Do you have any comparable data of HTTPCore API and Tomcat Http.
means what are the features for HTTP  which are not supported by HTTP Core
in comparision to Tomcat.

Actually we are using the Embedded tomcat in our application for giving HTTP
Support, But we are facing some performance issue there so we want to
replace that with HTTP Core based Server.

Thanks


On 9/3/07, Oleg Kalnichevski <[EMAIL PROTECTED]> wrote:
>
> On Mon, 2007-09-03 at 10:56 +0530, Techie India wrote:
> > Hi,
> >
> > I recently started looking at the httpCore Api's and the examples.I want
> to
> > know what are all the features which HTTP Core  Supports on the Server
> Side.
> >
> > Thanks.
>
> HttpCore is a set of low level components that implement requirements of
> the most essential requirements of the HTTP protocol as specified in
> RFC2616. HttpCore is meant to be content agnostic: it is intended to
> facilitate transfer of arbitrary content from one end point to another
> but it is NOT intended to perform content transformation or processing
> of any kind.
>
> HttpCore is both an abstract API and a default implementation of that
> API. HttpCore Base builds on the classic blocking I/O model and depends
> on a 1.3 compatible JRE only. HttpCore NIO is based on the non-blocking
> I/O (NIO) model and requires HttpCore Base and a 1.4 compatible JRE.
>
> Both models have their pros and cons. We usually recommend classic I/O
> for those applications for best performance, while NIO model is more
> appropriate for use cases where ability to handle thousands of
> concurrent connections in a resource efficient manner is more important
> than the raw data throughput.
>
> Do you have any specific server-side features / functionality in mind?
>
> Oleg
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail:
> [EMAIL PROTECTED]
>
>

Reply via email to