 |
 |
| Domino Tips: |
|
 |
 |

ACL
Get Admin Server Of Database
Jon Lindgren 08.25.2000
Rating: --- (out of 5)




Here is a way to get the Administration Server out of the ACL using the API. No warranty express or implied, is given as to the use of this code. Use at your own risk.
Code
Declare Function OSPathNetConstruct Lib "nnotes.dll" (Byval portName As String, Byval ServerName As String, Byval FileName As String, Byval retPathName As String)As Integer Declare Function NSFDbOpen Lib "nnotes.dll" (Byval PathName As String, dbHandle As Long) As Integer Declare Function NSFDbClose Lib "nnotes.dll" (Byval dbHandle&) As Integer Declare Function NSFDbReadACL Lib "nnotes.dll" (Byval DBHANDLE As Long,rethACL As Long) As Integer Declare Function ACLGetAdminServer Lib "nnotes.dll" (Byval hList As Long,Byval ServerName As String) As Integer
Function GetAdminServer() As String Dim hDB&,hACL& Dim SvrName$,retPathName$ Dim Status% retPathName$=Space$(256) Status%=OSPathNetConstruct("","SERVER1","names.nsf",retPathName$) SvrName$=Space$(256) Call NSFDbOpen(retPathName$,hDB&) If hDB& > 0 Then Print "FOUND DB" Status% = NSFDbReadACL(hDB&, hACL&) If Status% = 0 Then Status% = ACLGetAdminServer(hACL&,SvrName$) End If Call NSFDbClose(Ret&) End If GetAdminServer=SvrName$ End Function
 |

|
Rate this Tip
|
To rate tips, you must be a member of SearchDomino.com. Register now
to start rating these tips. Log in if you are already a member.
|


');
// -->
DISCLAIMER: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.
|
 |
|
|
 |
|
 |
 |
 |
 |
| TechTarget provides technology professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective purchase decisions and managing their organizations' technology projects - with its network of . |
|
| |
All Rights Reserved, , TechTarget |
|
|
|
|
|