Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. CONot only does this response assume that the server is providing the content on both port 443 and port 80 (which is most likely not the case), it does not succeed in sending the data over a secure connection, which is the whole point of SSL. It does not "work"---the code merely obscures the fact that you're really downloading from a distinct, non-secure port. It's like if I want to go to Dover in the United Kingdom but my car can't make it out of Colorado, USA, so you do a `destination.replace("o", "en")` and wow, I'm at my destination! But now I'm really in Denver, not Dover...
      singulars
    2. CO@GarretWilson Not actually... I've already tested what u've described here. DownloadManager is capable of downloading secure content from https sites. The only problem is the bug in DownloadManager.Request(url) constructor. It does a wrong validation. So if you specify an http url, it internally forwards it to https. I've tested it using my own server where we allow only secure connections. This can also be verified by opening an https url in browser using http - it will be automatically forwared to https site.
      singulars
    3. COIf your browser redirects from HTTP to HTTPS it's only because your server is configured to listen on port 80 and issue a redirect to port 443. Perhaps you're saying that internally DownloadManager knows how to follow HTTP redirects and will correctly connect to an SSL sites if it's redirected to one. I haven't tested that. It's good to know for specific situations in which you control the server, but there's no guarantee all (or even most) servers will be so configured, so it's not a general solution.
      singulars
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload