One Integration User

0
Hello Experts,   I'm working on integrating Teamcenter with Mendix. My client has requested that users be able to log into Teamcenter from Mendix using just a username and password (similar to logging into Active Workspace), without having to set up Teamcenter configurations or be redirected to a login page. Could anyone kindly provide guidance on how to achieve this, including how to set up the necessary Teamcenter configurations in the code?  
asked
1 answers
0

An administrator will always have to set up Teamcenter configurations for users, but this is only done once. Users are usually directed straight to the login page for the active configuration.

If you want to avoid users logging into Mendix and then into Teamcenter, you can store the Teamcenter credentials for each user in the Mendix app. They will have to provide them once, on first use or if they need to change them.

Then all interactions with Teamcenter will need to use a microflow like the ExecuteLogin in the Teamcenter Connector to log in using the stored credentials, rather than ones provided on a login page.

answered