Actually, Matt was playing around with an impl of keep-alive, but
I don't think was happy "enough" with it to commit it. I'm not sure
what the status is .. Matt?
I have to believe that keep-alive would make a big perf difference
in repeated calls over long networks scenarios.
BTW, what does this have to do with http chunking?
Sanjiva.
----- Original Message -----
From: "Scott Nichol" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, June 08, 2001 9:25 AM
Subject: Re: Soap4J and HTTP 1.1 Keep-Alive/Persistent support
> More directly related to the subject of this message, Apache SOAP opens a
> new connection for each request. There is no provision for maintaining a
> connection between calls. As to whether it will be supported, I suggest
you
> check out Axis (http://xml.apache.org/axis/), which will replace Apache
> SOAP.
>
> Scott
>
> ----- Original Message -----
> From: "Narayanan Seshadri" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Thursday, June 07, 2001 6:36 PM
> Subject: Soap4J and HTTP 1.1 Keep-Alive/Persistent support
>
>
> > Hi,
> >
> > If this topic is already discussed, please point me the message thread.
> > I am trying to use the SOAP4J and take advantage of HTTP 1.1 's
keep-alive
> > functionality. I am interested in doing this to avoid creating a socket
> > every time and use the same connection to make multiple requests one
after
> > the other.
> >
> > I have tried to use the latest SOAP implementation and found that the
HTTP
> > response header has Transfer-Encoding: chunked which adds the
> content-length
> > as part of the body of the message. Because of this extra content-length
> in
> > the body of the message, the parser throws exception.
> >
> > Is there a plan to handle this chunked encoding and extract the message
> > appropriately?
> >
> > Thanks
> > -Narayanan