You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have no idea why it happens. We register our module the same way it's done in your SamRegistrationInstaller:
CDIPerRequestInitializer cdiPerRequestInitializer = null;
if (!isEmpty(System.getProperty("wlp.server.name"))) {
// Hardcode server check for now. TODO: design/implement proper service loader/SPI for this
cdiPerRequestInitializer = new LibertyCDIPerRequestInitializer();
logger.log(INFO, "Running on Liberty - installing CDI request scope activator");
}
AuthConfigFactory
.getFactory()
.registerServerAuthModule(new HttpBridgeServerAuthModule(cdiPerRequestInitializer), ctx);
// Add a listener so we can process the context destroyed event, which is needed
// to de-register the SAM correctly.
ctx.addListener(this);
The text was updated successfully, but these errors were encountered:
Hi
We tried to migrate from Soteria 2.0 to 3.0 and got an exception after successful authentication in our UI:
We have no idea why it happens. We register our module the same way it's done in your SamRegistrationInstaller:
The text was updated successfully, but these errors were encountered: