Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
---
title: "FDS Gateway Login Connector"
url: /appstore/modules/fds/
description: "Describes how to install and configure the FDS Gateway Login Connector to enable Single Sign-On for Mendix applications integrated with Siemens Foundational Services."
##If moving or renaming this doc file, implement a temporary redirect and let the respective team know they should update the URL in the marketplace.
---

## Introduction

The [FDS Gateway Login Connector](placeholder) enables Single Sign-On (SSO) for Siemens products by integrating Mendix applications with Siemens Foundational Services (FDS).

Instead of authenticating users directly, the connector delegates authentication to the FDS Gateway, the shared identity platform for Siemens Xcelerator products. Depending on the customer's FDS configuration, users can sign in using either their Siemens ID or their organization's workforce identity provider, such as Microsoft Entra ID. This provides a consistent, secure authentication experience and allows organizations to continue using their existing identity and access management (IAM) infrastructure.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wouldn't call the FDS Gateway "the shared identity platform for Simens Xcelerator products". It's not wrong but also not right.
Instead i would suggest:

"a shared access layer for Siemens Xcelerator applications and services that integrates with FDS IAM."

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm doing some thinking and would also like to add a sentence that refers to OIDC.

  • if we use the same introduction in the marketplace, it will give a hit for users seraching OIDC, which I think is good.
  • it also explains the value of the module. So not only WHAT it's doing but also explianing WHY that is relevant.

I suggest to add: "The connector abstracts the underlying OpenID Connect (OIDC) integration with Siemens Foundational Services, reducing the need for application-specific identity provider configuration."


The connector supports federated authentication by relying on the identity relationships configured in FDS, enabling Mendix applications to integrate seamlessly with the Siemens Xcelerator ecosystem.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I feel this sentence is repeating what previous introduction already says. It feels a bit more fluffy as well. Let's remove

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To clarify for whom this connector is aimed, i suggest to add:

"This connector is intended for Siemens Xcelerator products and other applications that are required to authenticate users through Siemens Foundational Services."

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also i would want to add the following:

"Terminology note: Earlier discussions and documentation may refer to Siemens Access Management (SAM) or SAMv2. The current Siemens Foundational Services terminology uses FDS IAM and FDS Gateway."

Two reasons:

  • it will make the module discoverable for users looking for SAM
  • it will also explain situation for users who may ask "ok, so is this the SAM module?"

### Typical Usage Scenarios

* Build an Xcelerator product with Mendix. End-users sign in through Siemens FDS IAM, with the FDS Gateway handling authentication and providing tokens to your application.
* Build single-tenant products for contracted customers, or multi-tenant products for prospective customers to evaluate before purchase.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In terms of typical usage scenarios, I think we can formulate more clearly. I explianed to copliot the intend behind the draft and it suggested:

"* Build a Siemens Xcelerator product with Mendix that must authenticate users through Siemens Foundational Services (FDS).

  • Build single-tenant deployments for contracted customers or multi-tenant evaluation environments for prospective customers, while using Siemens Foundational Services for user authentication."

I think that explains better. Agree?


### Features and Limitations

#### Features

* **Login session initiation** – After the FDS Gateway authenticates the end-user through FDS IAM, the connector initiates a local session in the Mendix application. The application does not display its own login page, providing a seamless SSO experience.

* **Just-in-time user provisioning** – When a user signs in for the first time, the connector automatically creates a corresponding user account in the Mendix application based on the JWT claims received. You can use the default provisioning logic or implement custom provisioning. On subsequent sign-ins, the connector can also update user information using the same provisioning logic.

* **Role-based access control** – User roles are assigned dynamically based on claims in the JWT tokens received from FDS, enabling centralized authorization management.

* **Tenancy support** – The connector makes a tenant identifier available when a user signs in. Your application can use this identifier to ensure users can only access data for their own tenant. The connector provides the tenant information; you are responsible for implementing the tenancy structure.

#### Limitations

* **No synchronized session management** – Authentication is delegated to the FDS Gateway, but session management is handled independently by the Mendix application. Changes to a user's login state in FDS Gateway are not propagated to active Mendix sessions, and FDS-initiated logout is not supported.

## Dependencies

[Community Commons module](https://marketplace.mendix.com/link/component/170)

## Prerequisites

Before configuring the FDS Gateway Login Connector, your application must be onboarded to Siemens Foundational Services (FDS). To onboard an application and publish services within the Siemens FDS ecosystem, follow [Launch a XaaS offering: end-to-end journey](https://developer.internal.siemens.com/fds/fds_getting_started/recipes/Web-Application/index.html).

For onboarding support or questions about FDS services, contact the [FDSOne Help Portal](https://fdsone.atlassian.net/servicedesk/customer/user/login?destination=portals).

## Installation

1. Import the [FDS Gateway Login Connector](placeholder) module into your app from the Mendix Marketplace.
2. In the **Runtime** tab of **App Settings**, set `FDSGatewayLoginConnector.ASU_InitializeAuth` as the **After startup** microflow.
3. Configure the login page. For more information, see the [SSO](#sso) section below.
4. Configure the required constants. For more information, see the [Configuring the Constants](#constants) section below.

## Configuration

### Configuring the Constants {#constants}

The following constants are mandatory:

* **FDSGatewayLoginConnector.JWTIssuer** – Expected JWT issuer (`iss`) value.

Example: `https://{devtenant}.{region}.sws.siemens.com/oauth/token`

{{% alert color="info" %}}**devtenant** refers to the developer environment tenant, not the customer environment tenant (ECAiD).{{% /alert %}}

* **FDSGatewayLoginConnector.JWTJKU** – URI pointing to the JSON Web Key Set (JWKS) published by FDS IAM, used to verify token signatures. Defined as a JOSE header parameter in [RFC 7515](https://www.rfc-editor.org/rfc/rfc7515).

Example: `https://{devtenant}.{region}.sws.siemens.com/token_keys`

{{% alert color="info" %}}**devtenant** refers to the developer environment tenant, not the customer environment tenant (ECAiD).{{% /alert %}}

* **FDSGatewayLoginConnector.EnableLocalAuth** (*default: False*) – Enables or disables local login.

* **FDSGatewayLoginConnector.JWTValidationLeeway** (*default: 0*) – Allowed time leeway (in seconds) when validating JWT timestamps.

* **FDSGatewayLoginConnector.UserProvisioning** (*default: FDSGatewayLoginConnector.CUSTOM_UserProvisioning*) – User provisioning microflow.

For more information, see [Constants](/refguide/constants/).

## Enabling Single Sign-On {#sso}
Comment thread
Karuna-Mendix marked this conversation as resolved.

To enable SSO, create a `sso-login.html` file in `/theme/web/public` with the following content:

```html
<!doctype html>
<html>

<head>
    <title>FDS Gateway Login Connector</title>
    <script>
        const href = window.location.href;
        const i = href.indexOf('sso-login.html');
        const returnPath = '/' + href.substring(i + 'sso-login.html'.length);
        window.location.assign(
            href.substring(0, i).replace(/\/$/, '') +
            '/xctokenlogin?returnPath=' +
            encodeURIComponent(btoa(returnPath))
        );
    </script>
</head>

<body></body>

</html>
```

Update the `originURI` cookie value in `index.html` and use `/sso-login.html` instead of `/login.html` as shown in the code below:

```html
<script>
        if (!document.cookie || !document.cookie.match(/(^|;) *originURI=/gi)) {
            const url = new URL(window.location.href);
            const subPath = url.pathname.substring(0, url.pathname.lastIndexOf("/"));
            document.cookie = `originURI=${subPath}/sso-login.html${window.location.protocol === "https:" ? ";SameSite=None;Secure" : ""}`;
        }
    </script>
```

## Custom User Provisioning

The connector provides `FDSGatewayLoginConnector.CUSTOM_UserProvisioning` as the default user provisioning microflow. By default, it processes the JWT payload, creates or updates users in `System.User`, and assigns user roles.

You may need a custom provisioning microflow in the following cases:

* Your application uses a custom user entity (specialized from `System.User`) and you need to store additional user attributes.
* You want to implement tenancy logic, such as capturing the tenant identifier on a custom user entity attribute.

To use custom user provisioning, do the following:

1. Create a custom user entity inheriting from `System.User`.
2. Create a custom provisioning microflow in your app.
3. Set the `FDSGatewayLoginConnector.UserProvisioning` constant to point to your custom microflow.
4. Ensure the custom microflow:
* has a parameter of type String named *RequestJson*
* returns a `System.User` object