in reply to problem using pp with XML::Simple
Further investigation shows the issue isn't with XML::Simple
I am pulling data from the web using LWP::Simple
When I run the compiled version no data is returned
Testing a bit more I found it works fine with http but not with https :(
My test code is
use LWP::Simple; use Encode::Byte; my $url = 'https://msp.f-secure.com/web-test/common/test.html'; my $data = LWP::Simple::get($url); print $data;
running normally works fine but if I compile it using pp no data is returned
|
|---|