Hi all,
I'm trying to geocode adresses from inside the network of my company, which uses a proxy where I need to identify with username and PW. I have the necessary information from our webadmins. I do not have a lot of experience using SASEG but so far I have the code below:
filename out "filepath\test.txt";
/*options set=SSL_USE_SNI=1*;
proc http
method='GET'
proxyhost = 'OUR WEBPROXYSERVER'
proxyport = 8080
proxyusername = 'MYUSERNAME'
proxypassword= 'MYPASSWORD'
out= out;
run;
The error message that I get is:
ERROR: Secure communications error status 807ff019 description "SSL Error: Invalid subject name in partner's certificate. Subject
name must match machine name."
ERROR: SSL Error: Invalid subject name in partner's certificate. Subject name must match machine name.
ERROR: Call to tcpSockContinueSSL failed.
The commented lines 2&3 in the code are based on an online resource here
https://support.sas.com/kb/64/218.html, which is the only place where I found a potential solution to my problem. It says that I need a SNI, which, as far as I understand should be provided by swisstopo? However, I have not found anything to help me here...
Any help is appreciated!