Hot fix R92001 addresses the issue(s) in SAS Data Quality Server 9.4_M1 on Linux for x64 as documented
in the Issue(s) Addressed section of the hot fix download page:
http://ftp.sas.com/techsup/download/hotfix/HF2/R92.html#R92001
The hot fix downloaded, R92001la.zip, contains the updated files required to address
the documented issues.
Do NOT extract the contents of R92001la.zip. The hot fix installation process will extract
the contents as needed.
After downloading R92001la.zip, follow the instructions for applying hot fixes in the SAS Deployment Wizard and SAS Deployment Manager 9.4: User’s Guide.
The content of this hot fix is listed in the hot fix manifest.
ln -s libgsoap_ssl-2.7.so libgsoap-2.7.soThis step gives SAS code access to the SSL-enabled SOAP library.
The fix includes a new user-written function, dmsrvprotocol. The SAS code generated by DI Studio's 'run batch job' transform will have to be modified so that it calls this new function.
The function takes a character-type argument whose value must be either "http" or "https". In this case you will want to use "https". Below is a sample data step using the new function:
data _null_;Add the call to dmsrvprotocol("https") anywhere in the data step before the call to dmsrvbatchjob and communication between client and server will use SSL.
rc = dmsrvuser("usernamegoeshere", "passwordgoeshere");
rc = dmsrvprotocol("https"); /* new function */
rc = dmsrvbatchjob("job", "machine.xx.com", 21036);
run;
This completes the installation of hot fix R92001 on Linux for x64.