in reply to SOAP::Transport::HTTP::Daemon w/ Auth

Looks like you need to write your own sub SOAP::Transport::HTTP::Daemon::handle
sub handle { my $self = shift->new; while (my $c = $self->accept) { while (my $r = $c->get_request) { ## handle cookie based authentication somewhere in here $self->request($r); $self->SUPER::handle; $c->send_response($self->response) } # replaced ->close, thanks to Sean Meisner <Sean.Meisner@VerizonWi +reless.com> # shutdown() doesn't work on AIX. close() is used in this case. Th +anks to Jos Clijmans <jos.clijmans@recyfin.be> UNIVERSAL::isa($c, 'shutdown') ? $c->shutdown(2) : $c->close(); undef $c; } }

MJD says "you can't just make shit up and expect the computer to know what you mean, retardo!"
I run a Win32 PPM repository for perl 5.6.x and 5.8.x -- I take requests (README).
** The third rule of perl club is a statement of fact: pod is sexy.

Replies are listed 'Best First'.
Re^2: SOAP::Transport::HTTP::Daemon w/ Auth
by Anonymous Monk on Jun 28, 2004 at 18:38 UTC
    thanks, that seems to be what i expected ... thanks