At 10:43 2002-04-30 -0500, Peter A. Eisch wrote: > my $fh = new FileHandle $myfile, 'r'; > $resp = HTTP::Request->new( > 'PUT', > $remote, > $headers, > \$fh, > );
How would this work with a $ua->post(...) syntax? One of my grander goals with LWP is to eliminate (wherever possible) the need for anyone to have to do HTTP::Request->new or use the HTTP::Request::Common routines, and instead just use the $ua->post, $ua->get, and $ua->head methods. -- Sean M. Burke http://www.spinn.net/~sburke/
