- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hello @jonasn92134656 ,
It's copied to the operator.. so just query (query def, nlws.load,...) operator to access the information
<access authenticationType="native" noConsoleCnx="true" sessionTimeout="0">
<homeDir activated="false"/>
<trustedIP id="1" mask="127.0.0.1"/>Basically steps are
- login with the user
- get oparator id
- elevate right to admin
var ctx = logonEscalation("admin");
- load operator object
- check if current IP is the one whitelisted
- deescalate rights
logonWithContext(ctx);
- ...
- Profit
Marcel