in reply to Re^2: LWP: How to find out local port number? (ISA)
in thread LWP: How to find out local port number?

That's where I'd jump into the Perl debugger and figure out why it is silently failing.

Inspecting the code, I found:

sub socket_class { my $self = shift; (ref($self) || $self) . "::Socket"; }

So you might try adding:

package MyHttp; sub socket_class { "LWP::Protocol::http::Socket" }

But I don't see why that problem would cause a silent failure.

- tye