In my system, I have set up the Indra works engineering and also loaded the project. Even the vpn connection is all set in my system and I am able to login to the controller through the Indra works.
I have installed Mlpi sdk version 1.22.0(even tried with 1.29.0) and added the reference to my C# project.
Using commlpiLib i am able to connect to the controller with valid credentials and IP from the C# application.
How can i proceed ahead with the user management in C# using this library.
What i actually want to achieve is:
1)Create users.
2)create groups
3)Assign group to the user
4)Assign persmissions to the group
All these things what we are able to do from indraworks.
I have tried with the following statement in c#:
MlpiAccessControlLib accessControl = new MlpiAccessControlLib();
accessControl.AddUser(
"newUser",
"password123",
"User Full Name",
""
);
it gives error as MlpiAccessControlLib does not exist in commlipLib
Also there is no MlpiNet.dll in the installer.
How shall i go ahead with this.
Thank you
ย