in reply to Re^10: Server Issues and https-Requests
in thread Server Issues and https-Requests
A search for that string (for me) produces a list of results, every one I clicked on links to the same general IIS debugging guide which includes error descriptions. Consider making life easier for yourself (any anyone answering your questions) by ensuring something runs from the command prompt first, before getting lost in the labyrinth of IIS/Microsoft configuration. Try setting a proxy for the https scheme, e.g.
my $ua = LWP::UserAgent->new; my $proxy = 'http://proxy.example.com:8001'; $ua->proxy( ['http', 'https'] => $proxy );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^12: Server Issues and https-Requests
by amitsq (Beadle) on Oct 24, 2017 at 12:20 UTC |