Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 1.83 KB

handle-common-mendix-sso-errors.md

File metadata and controls

41 lines (28 loc) · 1.83 KB
title space category tags
Handle Common Mendix SSO Errors
Mendix 7 How-To's
Monitoring & Troubleshooting

1 Introduction

Below you will find solutions for some of the most common problems you may encounter when developing an AppCloud-enabled app.

This how-to will teach you how to do the following:

  • Monitor and troubleshoot common Mendix SSO errors

2 Prerequisites

None.

3 "404 Not Found" Errors When Navigating to /openid/login

A frequent cause of "404 not found" errors when navigating to /openid/login is that the OpenID request handler is not enabled. It should be enabled on startup.

To fix this, make sure the AppCloudServices.StartAppCloudServices microflow is executed during the startup of your application. You can do this by setting it as the app's after-startup microflow or by having the application's existing after-startup microflow trigger it.

3 Realm Verification Errors

These are commonly caused by compatibility issues with JAR files in the <projectpath>/userlib directory of your project. For details on the most common compatibility issues, refer to Troubleshooting in the Mendix Reference Guide.

4 Related Content