Auth in Aras 12
Hello guys We have an mvc C# app and we use IOM to connect to aras. Has anyone tried the "old" way connecting via var conn = IomFactory.CreateWinAuthHttpServerConnection(url, db); and got it successfully working on production environment? It's not working for me the impersonation does not work. The app cannot log in, but if im in my dev environment using IIS express everything is fine user is found and logs in. Best regards9.5KViews0likes10CommentsCreate User When Identity Exists?
Good day all. I am running into a problem when trying to create a User. I have an Identity that is used during Lifecycle Released state for documents. I would like this Identity to send an e-mail to a specific account. I figured that I would create a User to add the e-mail to, but when I create the User I receive a message stating that I can't because the Identity already exists. How can I fix this issue? Also, how can I associate the two? Thank you for the help.6.7KViews0likes4CommentsChange the identity when adding a user
Hi All, We weird dutch people having names with a word between our first name and surname. "Jan de Wolf", "Piet van Rijn", "Karel van der Casteele" See also: www.behindthename.com/.../dutch_names We want to create documents with Aras en sometimes we need to split those names in separate areas, therefore I added a property on the users Itemtype. But when creating a user automatically a identity will be created with the method AddAliasIdentity. This is a Aras core class. I would like to add this property some how to complete the string in the identity. Has any one an idea how I could solve this challenging issue. Best regards, Tom4.9KViews0likes4CommentsAdd User Identity
Good day all. We have created an Identity called sm_AddUsers (v11 SP10). We have a separate team that is taking over the responsibilities of adding users to the system and they do not require any other elevated privileges, so I don't want to add them to the Administrators Identity. I can't seem to get this Identity setup correctly with permissions to be able to add users. The current error they receive is Add access is denied for Alias. Aras.Server.Core.PermissionsNoCanAddFoundException I went through User, Alias, Identity, and Member ItemTypes and made sure the Identity was in Can Add and the permissions where set the same as the Administrators (except User, they cannot delete). I'm at a loss for why this is happening. Is there something else that affects who can add a User? Thank you for your help.Solved4.6KViews0likes2CommentsHow to create sub groups in top level group
Hi I am beginner in ARAS. I am going through User and Identity documentation, I created top level Identity now I would like to create new sub group. e.g Automobile Engineering > Manufacturing, Sale and IT. How I can add sub groups? Thanks,2.2KViews0likes2CommentsHow to use GrantIdentity ?
Hi, On ARAS R12, in server methods, I needed to grant temporary some rights. For that, I did something like this: var myidentity = Aras.Server.Security.Identity.GetByName("My Identity"); bool PermissionWasSet = Aras.Server.Security.Permissions.GrantIdentity(); try { /**************YOUR SPECIAL CODE HERE***************/ finally { if (PermissionWasSet) Aras.Server.Security.Permissions.RevokeIdentity(myidentity); } Due to deprecated API, on ARAS R19, I need to use CCO.Permissions.GrantIdentity but this method doesn't return a boolean to know if the identity has been granted or not. How should I do ? When and how to do the RevokeIdentity ? Is this enough ? using (CCO.Permissions.GrantIdentity(Aras.Server.Security.Identity.GetByName("My Identity"))) { /**************YOUR SPECIAL CODE HERE***************/ } Thank you in advance for your answer.1.6KViews0likes4CommentsReport User Identity Relationship
Good day all. I ran a report for Inactive Users. I have a list of almost 3000 users that have never logged in. I would like to remove these accounts, but my boss wants to make sure that these accounts don't have any other relationships. Has anyone created a report that can show me a list of Identities that only have a User relationship and Users that only have an Identity relationship? Thank you for the help.1.5KViews0likes0CommentsCalling SearchDialog from Server method
Hi, Is it possible to show SearchDialog from a Server method? I can use MaximazableDialog in Javascript to show the SearchDialog and get the response in callback. But I want to use such facility in a Server method. In my particular case, I am trying to send email using a server method. If the Recipent is already entered then it sends the email. But I want to prompt the user to search for another user item when Recipient is not pre-defined. If that is not possible then any alternative suggestions will be appreciated. Kind Regards, Vikas817Views0likes3CommentsBatch Delete Identity Memberships
Hello, We have used the batchloader utility to create new memberships in Innovator. It appears that removals are a bit more difficult due to safeguards in place for the system. What is an easy path forward in creating an AML script (or method) to accomplish this task? For example, we have 89 identities that had incorrect identity membership assignments. The goal is to remove existing memberships of an identity and add a different identity. --CorbinSolved117Views0likes2Comments