On Tue, May 23, 2006 at 06:37:27PM -0400, Adam Zey wrote:
> 
> The data going from client->server needs to be sent over an HTTP 
> connection, which seems to limit me to PUT and POST requests, since 
> they're the only ones that allow significant quantities of data to be 
> sent by the client. Ideally, there should be no delay between the client 
> wanting to send data and the data being sent over the connection; it 
> should be as simple as wrapping the data and sending.

> 
> So, I need some way to send data to a PHP script that lives on a 
> webserver without any buffering going on. My backup approach, as I 
> described in another mail, involves client-side buffering and multiple 
> POST requests. But that induces quite a bit of latency, which is quite 
> undesirable.

How much data are you sending? A POST shouldn't cause that much
delay unless your talking about a lot of POST data

Curt.
-- 
cat .signature: No such file or directory

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to