Single sign-on to Aras Innovator using a proprietary authentication system
We have built a system that when you log in to a PC, that system can auto-login to multiple systems. We want to use our own authentication system to automatically log in to Aras Innovator. I would like some advice. ・Do you have any documentation that would be helpful? ・What information can I provide to get more detailed advice?11KViews0likes9CommentsAuth 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.5KViews0likes10CommentsHow to get the refresh token when existing token expires using the expired token.
We have one application which utilizes ARAS REST API token authentication using username and password .We are facing issue once the access token expires (in our case it's 3600 secs) we need to refresh that token without the need of user to sign-in again using username and password. So, How to get the refresh token using expired access token from the ARAS REST API.7.7KViews0likes2CommentsOffice Connector with Authentication
Hi, we use SP9 with windows authentication (single sign-on) and we installed Office Connector 11.0R7. On the client machine, we open an Excel and a login pop-up shows up. We pushed the login button and we get this error : "object reference not set to an instance of an object" can anybody help? thanks, Duygu5.3KViews0likes2Commentsextending the aras authentication to access custom application
Hi, i am new to this domain .Is it possible to access a third party application using the same credentials of aras. For example if I am already logged into aras and if I open a url it automatically receives its credentials for the aras as the current logged in use. If possible how can we do it????2.8KViews0likes1CommentInstruction: How to Enable SSL in Aras Innovator V12 (or Fix Invalid Redirect_Uri)
Hello everyone, As I found myself struggling setting up SSL across multiple Aras Installations, I decided to write a short instruction. This instruction should fix error 'invalid redirect_uri'. 1. Enable SSL in Internet Information Services (IIS) In IIS, select your instance and under 'IIS' go to 'SSL Settings'. Make sure 'Require SSL' is checked and 'Client Certificates' is set to 'Ignore'. Depending on the modules you installed, make sure this setting is successfully applied to the following sub pages: Client, ConversionServer, NotificationServer, OauthServer, SelfServiceReporting, Server, Vault. 2. Install Notepad++ on the Innovator Server Install the latest version of Notepad++ or any similar tool that can replace text recursively in all files in a selected folder. 3. Replace HTTP instances with HTTPS In Notepad++ go to 'View > Find...' (or CTRL+F) and head over to the 'Find in Files' tab. Configure it as follows: Find what: http://localhost/ Replace with: https://[YOUR SERVER NAME / IP]/ Filters: *.* Directory: [THE ROOT DIRECTORY OF YOUR INSTALLATION – AN INNOVATOR FOLDER BY DEFAULT] Check: 'Include all sub-folders' Search mode: Normal Leave all unmentioned fields blank or unchecked Now click 'Replace in Files'. The process should take about 5 minutes so you can grab a cup of coffee. Once you return, about 30 instances should have been replaced. The 'redirect_uri' error should have been resolved and your browser will give you a SSL Certificate pop-up. Click 'OK' (only necessary once). I hope this helps. All the best from Almelo. Daan Update 2025: In newer versions of Innovator, much more than 30 instances will be found for replacement.2.7KViews0likes0CommentsHow to reuse Active Directory / LDAP Credentials in Webservice connection?
Hi, we handle Aras logins via Active directory. A second software shall be connected via Webservice/HttpWebRequest. This software share the same Active Directory Accounts. Regular connection strings in Aras may look somehow like this: string username= "myuser"; string password="mypw"; string encoded = System.Convert.ToBase64String(System.Text.Encoding.GetEncoding("ISO-8859-1").GetBytes(username+":"+password)); HttpWebRequest request = (HttpWebRequest) WebRequest.Create("http://xyz"); request.Headers.Add("Authorization","Basic "+encoded); On local machines, it´s possible to use this line of code for using Windows access data: request.Credentials = CredentialCache.DefaultNetworkCredentials; But as Aras is running on a server, this Method will not return the credentials of the current user. Are there samples available, that show how to forward the user credentials? I have seen, that the Aras Sharepoint integration does something similar, especially the Method SPDocument_onGet . But I am not sure, if this code is reusable, as it links to some Sharepoint specific files in the codetree. Maybe there are some other samples available, which are easier to use? Thanks for your help! Angela2.3KViews0likes0CommentsHow to use Client Certificates for login into Innovator (or connecting to the server) ?
Hi community, does any one of you use Client Certificate Authentication for login into Innovator? I want to use this for additional security but haven´t done much own tests yet. Can you give me any tips on how to configure client certifications for Innovator? Do you use them by yourself and can share experience ("is it easy/hard to do")? According to the Aras roadmap, Client Certificate Authentication is now supported in Innovator 20. Does anyone know how this works? Is this a OAuth setting? What options do we have when not using Innovator 20? Can we assign Client Certification on Server level? I am still new to the topic, so every small hint would be highly appreciated! Thanks! Angela1.1KViews0likes1CommentToken Authentication using the REST API
Aras Innovator introduced an Authentication Server feature in 11.0 SP12 and has been fleshing it out with each new service pack. In 11.0 SP15, it is possible to request an OAuth token from this server that can be used with the RESTful API as an ...0Views0likes0Comments