I'm trying to connect python to SAS in order to insert data into a SAS table. but i'm getting the following error:
Using SAS Config named: winiomwin We failed in getConnection The application could not log on to the server "xxxxxxxxx.xxxxxxx.xxxxx1.xxxx.xx:xxxx". The user ID "<oladokun>" or the password is incorrect. SAS process has terminated unexpectedly. RC from wait was: 4294967290
I have saved "-authinfo" file without extension user's home directory with the following information
AKEY user <xxx....> password <xxx....>
I also have sascfg_personal.py file saved
SAS_config_names=['winiomwin']
winiomwin = {'java' : 'java',
'iomhost' : 'xxxxxxxxx.xxxxxxx.xxxxx1.xxxx.xx:xxxx',
'iomport' : 8561,
'encoding' : 'utf-8',
'authkey' : 'AKEY'
}
Can you please help understand the problem and a solution. Thank you