NAM Probe stops responding to NAM server following the recent RedHat OS update.
No data is sent to NAM server and NAM Probe shows connectivity problem in NAM Console.
The following error is presented in rtmgate.log file:
It is not allowed to configure supportsCredentials=[true] when allowedOrigins=[*]
Problem was introduced by a new version of tomcat package:
Download and install NAM 2019 service pack 2.
<filter-class>org.apache.catalina.filters.CorsFilter</filter-class> <init-param> <param-name>cors.allowed.origins</param-name> <param-value>*</param-value> </init-param>
and change it to:
<filter-class>org.apache.catalina.filters.CorsFilter</filter-class> <init-param> <param-name>cors.allowed.origins</param-name> <param-value></param-value> </init-param>
JANUARY 15, 3:00 PM GMT / 10:00 AM ET