Hi Isomorphic,
We have upgrade our framework version frm the 12 to 121p and when autenticating the following error appears on the Tomcat console:
=== 2021-08-25 12:34:48,843 [ec-3] WARN RequestContext - rpcRequest.execute() failed:
java.lang.Exception: No Authenticator configured for this URL
at com.isomorphic.auth.Authentication.clearAuthInfo(Authentication.java:118)
at com.redur.login.rpc.SecureAppDMI.limpiarInicio(SecureAppDMI.java:960)
We have an Authenticator class defined in the server.properties:
authenticator.authRedClie: com.redur.login.rpc.RedClieAuthenticator
authenticator.authRedClie.datasource: userPortalProv
authenticator.authRedClie.usernameField: USUARIO
authenticator.authRedClie.passwordField: PWD
authenticator.authRedClie.cookieDomain: redcliesc.redur.es
authenticator.authRedClie.sessionTimeout: 1800
The authentication declared on the web.xml looks like:
<filter>
<filter-name>AuthenticationFilter</filter-name>
<filter-class>com.isomorphic.auth.AuthenticationFilter</filter-class>
<init-param>
<param-name>authenticator</param-name>
<param-value>authRedClie</param-value>
</init-param>
<init-param>
<param-name>maxTries</param-name>
<param-value>-1</param-value>
</init-param>
<init-param>
<param-name>defaultLoginRedirect</param-name>
<param-value>/secureApp/index.jsp</param-value>
</init-param>
<init-param>
<param-name>loginPage</param-name>
<param-value>/secureApp/login.jsp</param-value>
</init-param>
<init-param>
<param-name>rules</param-name>
<param-value>
ignore:#index.jsp#
ignore:#nonAuthenticatedOperations.jsp#
match:#.*#
</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>AuthenticationFilter</filter-name>
<url-pattern>/PortalProvSc/secureApp/*</url-pattern>
</filter-mapping>
Please let us know what can be missing.
Thank you in advance!
We have upgrade our framework version frm the 12 to 121p and when autenticating the following error appears on the Tomcat console:
=== 2021-08-25 12:34:48,843 [ec-3] WARN RequestContext - rpcRequest.execute() failed:
java.lang.Exception: No Authenticator configured for this URL
at com.isomorphic.auth.Authentication.clearAuthInfo(Authentication.java:118)
at com.redur.login.rpc.SecureAppDMI.limpiarInicio(SecureAppDMI.java:960)
We have an Authenticator class defined in the server.properties:
authenticator.authRedClie: com.redur.login.rpc.RedClieAuthenticator
authenticator.authRedClie.datasource: userPortalProv
authenticator.authRedClie.usernameField: USUARIO
authenticator.authRedClie.passwordField: PWD
authenticator.authRedClie.cookieDomain: redcliesc.redur.es
authenticator.authRedClie.sessionTimeout: 1800
The authentication declared on the web.xml looks like:
<filter>
<filter-name>AuthenticationFilter</filter-name>
<filter-class>com.isomorphic.auth.AuthenticationFilter</filter-class>
<init-param>
<param-name>authenticator</param-name>
<param-value>authRedClie</param-value>
</init-param>
<init-param>
<param-name>maxTries</param-name>
<param-value>-1</param-value>
</init-param>
<init-param>
<param-name>defaultLoginRedirect</param-name>
<param-value>/secureApp/index.jsp</param-value>
</init-param>
<init-param>
<param-name>loginPage</param-name>
<param-value>/secureApp/login.jsp</param-value>
</init-param>
<init-param>
<param-name>rules</param-name>
<param-value>
ignore:#index.jsp#
ignore:#nonAuthenticatedOperations.jsp#
match:#.*#
</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>AuthenticationFilter</filter-name>
<url-pattern>/PortalProvSc/secureApp/*</url-pattern>
</filter-mapping>
Please let us know what can be missing.
Thank you in advance!
Comment