Michael Thompson <[EMAIL PROTECTED]> writes:
> I'm making a request thus -
>
> $response = $ua->request( $form->click("B1") );
>
> The response is a "100 Continue" status. I just want to ignore it.
> How can I do so (i.e. get the actual status of my request)?
What version of LWP are you using. A "100 Continue" status reply
should be skipped by the lower level protocol module.
In the LWP::Protocol::http module you will find:
($code, $mess, @h) = $socket->read_response_headers(laxed => 1, junk_out => \@junk)
if $code eq "100";
Perhaps we should make it a while?
--Gisle