We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Who: Zed
Zed reported that after a standard installation, their publishing operations fail because of the following setting in the application.properties file:
URL of authorization service used to authorize publishing operations security.authz.service.endpoint=https://localhost/esg-orp/saml/soap/secure/authorizationService.htm
which should instead contain the hostname of the server.
The text was updated successfully, but these errors were encountered:
That value is passed to the SAMLAuthorizer through this setting in the security-context.xml:
<bean name="authorizer" class="esg.orp.app.SAMLAuthorizer"> <property name="endpoints"> <value>${security.authz.service.endpoint}</value> </property> </bean>
The SAMLAuthorizer probably needs to change to use the ESGFProperties class and read the value of the property at a specified key.
Sorry, something went wrong.
LucaCinquini
No branches or pull requests
Who: Zed
Zed reported that after a standard installation, their publishing operations fail because of the following setting in the application.properties file:
URL of authorization service used to authorize publishing operations
security.authz.service.endpoint=https://localhost/esg-orp/saml/soap/secure/authorizationService.htm
which should instead contain the hostname of the server.
The text was updated successfully, but these errors were encountered: