The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

OpenInteract2::Request::LWP - Read parameters, uploaded files and headers

SYNOPSIS

CTX->assign_request_type( 'lwp' );
...
while ( my $client = $daemon->accept ) {
    while ( my $lwp_request = $client->get_request ) {
        my $oi_request = OpenInteract2::Request->new(
                             { client  => $client,
                               request => $lwp_request } );
    }
}

DESCRIPTION

METHODS

BUGS

None known.

TO DO

Nothing known.

SEE ALSO

COPYRIGHT

Copyright (c) 2001-2003 Chris Winters. All rights reserved.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHORS

Chris Winters <chris@cwinters.com>

GET/POST parsing swiped from the OpenFrame project.