Is it possible to send LWP::simple get request to a different port then port 80? Like port 8080? building my port request into the link like 'http://site.com:8080' didn't work.
thanks!
my $url = 'http://www.site.com'; #looking for port 8080
my $content = get $url;