Hi everyone, I encountered a problem while importing XML file from website. Code: filename test url 'https://www.nbp.pl/kursy/xml/a027z190207.xml';
libname test xml;
proc copy in=test out=work;
run;
proc print;
run; The code above causes an error: As I understand the problem is with handshake/certification. To handle it I found a new source that uses api: filename test url 'http://api.nbp.pl/api/exchangerates/tables/A/?format=xml';
libname test xml;
proc copy in=test out=work;
run;
proc print;
run; It causes an error suggesting usin XMLMap. Would you be able to help? I know that it could be done in Python or R, but I would really like to use SAS on this. Thank you in advance.
... View more