Hello,
I run the below mentioned piece of code under two scenarios.
options metaserver="metadataserver"
metaport=8561
metaprotocol="bridge"
metauser="user"
metapass="password"
remote=remhost;
%put gs_rc=%sysfunc(grdsvc_enable(_all_,server=SASApp));
signon grid1;
scenario 1 > I run the code with unrestricted metadata access, it runs without any errors.
scenario 2 > I run this code without unrestricted metadata access, like an end user. The below mentioned error appears in the log.
25 GOPTIONS ACCESSIBLE;
26 options metaserver="metadataserver"
27 metaport=8561
28 metaprotocol="bridge"
29 metauser="user"
30 metapass=XXXXXXXXXXXX
31 remote=remhost;
NOTE: Connecting to SAS Metadata Server produced: ERROR: Association not found.
NOTE: SAS application server not found; the local machine will be used.
32
33 %put gs_rc=%sysfunc(grdsvc_enable(_all_,server=SASApp));
gs_rc=1
34
34 ! signon grid1;
I believe it is caused by some metadata level authorization conflict. Could someone provide an idea to tackle this?