Copy link to clipboard
Copied
I am trying to add a user through PrincipalUpdate method however I am getting error "no-access" and code is "denied" however I am Adimistrator-Limited and can create user through UI can't I create user through coding I am using .net and AdobeConnectSDK for the same below is my code.
objectPrincipalSetup =
new AdobeConnectSDK.PrincipalSetup();
objectPrincipalSetup.email = stringUserEmailAddress;
objectPrincipalSetup.login = stringUserEmailAddress;
objectPrincipalSetup.password = stringUserEmailAddress;
objectPrincipalSetup.name = "FullName"
objectStatusInfo = objectAdobeConnectXmlAPI.PrincipalUpdate(objectPrincipalSetup);
am I missing something. Also what is the difference between service URL https://connectproxxxxxxx.acrobat.com and "https://connectproxxxxxxx.na5.acrobat.com"
Can anyone help!
Copy link to clipboard
Copied
Sorry can't answer the first question but the second link apprently belongs to North America - na with the nth cluster/service/node/computer. You might have also encountered: http://connectproxxxxxxxx.emea.acrobat.com/ - that's the European node.
Copy link to clipboard
Copied
Thanks Petro, however my main concern is the first question, I asked the second one as I thought that it might be the problem which by your answer I don't think is. I think the Limited Administrator do not have rights to create Principals.
I would be really thankfull if anyone could answer