Skip to content

seeing this specific mendix runtime error...request com.mendix.core.CoreRuntimeException #4

@darshanmr82

Description

@darshanmr82

Exception occurred while processing request com.mendix.core.CoreRuntimeException: Missing Oauth configuration, please contact the application administrator

Not sure what's the issue here...but its failing at a point in code where its trying to add something into IContext object (oauthconfig class)

private OAuthConfig getConfig(IContext context){
try {
OAuthConfig configuration = XPath.create(context, OAuthConfig.class).first();
if (configuration == null) {
throw new CoreRuntimeException(
"Missing Oauth configuration, please contact the application administrator");
}
return configuration;
} catch (CoreException e) {
Core.getLogger("OauthCallback").error("Something went wrong while retrieving the Oauth configuration. \n"+ e);
}
return null;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions