Hi, I'm new to Mendix, but I’ve completed the tutorials and decided to move forward with my main goal - connecting to our on-premise Teamcenter instance. I created a new blank app, downloaded the Teamcenter Connector along with the Teamcenter Extension, and I was able to successfully connect to our instance. Unfortunately, I'm unable to run the app due to 22 unresolved errors related to OIDC, which seem to be linked to SSO (Single Sign-On). After some research, I came across suggestions that this may be related to Mendix Cloud SSO setup - not our Teamcenter configuration - since we don’t use SSO and I’ve selected the “credentials” login option instead. I also found a few threads recommending removal of the SSO-related microflow elements, but attempting that has only made things worse, as everything is interconnected and ends up breaking further. Any recommendations or guidance would be greatly appreciated. Thanks,
asked
Tomasz Wzorek
2 answers
0
To do this you need to actually delete the references to OIDC in the TCConnector microflows. These are easy enough to find by double clicking the errors in your list. For instance, in ShowLoginPage and LoginToMultipleTeamcenters you will see a decision relating to IsTcX. Remove this decision and all of the "true" path and this should eliminate some of the errors
So delete this bit:
Next you need to exclude or delete PerformTokenExchangeAndLoginToTC
answered
Colin Marshall
0
Thanks Colin, I've eventually managed to do exactly that.