> I have also understood that turning on no delay causes more
> network traffic. That was partly the reason for leaving it off
> by default.

That's the idea behind the Nagle algorithm, but in practice it only matters
for things that resemble interactive typing.  The idea is that you get a
lot of 1-byte payloads with 41 bytes or so of packet overhead, so the Nagle
algorithm waits a bit (200 ms) to see if you're going to type more.  In
the case of a SOAP request, all the payload is ready to go at once, so
there is nothing to wait for.  Using the Nagle algorithm in this context
always inserts the delay and never reduces any network traffic.

PS:-  "Nagle" might actually be "Nagel".  I can never remember.  Sorry,
Mr Nag[le][el].  :-)
-- 
[EMAIL PROTECTED] (WJCarpenter)    PGP 0x91865119
38 95 1B 69 C9 C6 3D 25    73 46 32 04 69 D6 ED F3




--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to