in reply to Re^2: Error while using LWP::Socket to send XML Data
in thread Error while using LWP::Socket to send XML Data

The module that LWP::Socket suggests is IO::Socket::INET. That's a core module, bundled with Perl, so you already have it installed.

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name
  • Comment on Re^3: Error while using LWP::Socket to send XML Data