Found a solution. Running apache 2.2 Installed mod_auth_sspi-1.0.4 Added this to the apache conf: LoadModule sspi_auth_module modules/mod_auth_sspi.so and this under <directory..>: #SSPI AuthName "A Protected Place" AuthType SSPI SSPIAuth On SSPIAuthoritative On SSPIOfferBasic On SSPIUsernameCase upper require valid-user Added the corrosponding Export lines to the SAS broker conf: Export REMOTE_USER _RMTUSER and tadaaa! Sample program: %let userid = %sysfunc(substr("&_RMTUSER",11,6)); /* domain\userid, domain is 10 character long + 1 for the \ */ data _null_; file _webout; put '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'; put '<html xmlns="http://www.w3.org/1999/xhtml">'; put '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />'; put '<body>'; put 'Your User ID is: <b>'@; put "&USERID"; put '</b>'; put '</body>'; put '</html>'; run;
... View more