in reply to
Perl - get HTTP streaming server data
"Streaming" in what sense? Do you mean:
The server never stops sending more data in the same request (doesn't send Content-Length header), or
The server sends a "100 Continue" status, or
something else?
The
LWP
classes don't seem well suited to "streaming" requests, you should probably look at using
IO::Socket::INET
directly.
-David.
Comment on
Re: Perl - get HTTP streaming server data
Replies are listed 'Best First'.
Re^2: Perl - get HTTP streaming server data
by
Zarkon
(Initiate)
on Mar 29, 2007 at 14:20 UTC
Yes it doesn't send Content-Length header. The server never stops sending more data except if the server is down or crashed. Yes i think too LWP is not suitable enough for my case. I will check IO::Socket::INET.
[reply]
In Section
Seekers of Perl Wisdom