Good morning,

I am trying to load from within Stata a file on this website https://www.lisdatacenter.org/resources/self-teaching/, it is in the column LIS sample files, US16 Household dataset.

So I went to the side, right clicked on the file, and copy link address. Then from withing Stata I typed

Code:
. webuse https://www.lisdatacenter.org/wp-content/uploads/files/us16ih.dta
file
    http://www.stata-press.com/data/r15/https://www.lisdatacenter.org/wp-content/uploads/files/us1
    > 6ih.dta not found
r(601);

.
So this did not do the trick. Then I tried

Code:
. webuse set https://www.lisdatacenter.org/wp-content/uploads/files/
(prefix now "https://www.lisdatacenter.org/wp-content/uploads/files")

. webuse us16ih.dta
sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath
> .SunCertPathBuilderException: unable to find valid certification path to requested target
r(5100);
and this did not do the trick either.

Do you know how I can retrieve a file from the web from within Stata?