oneclick log showing com.ca.spectrum.app.sdn.integration.web.topology.package locale ja_JP entries in the logs
search cancel

oneclick log showing com.ca.spectrum.app.sdn.integration.web.topology.package locale ja_JP entries in the logs

book

Article ID: 380161

calendar_today

Updated On:

Products

DX NetOps

Issue/Introduction

[main] WARN  System.err - ResourceManager: could not locate resource bundle - com.ca.spectrum.app.sdn.integration.web.topology.package for locale ja_JP entries in oneclick catalina.out

Environment

23.3.x

Cause

Init-parameter is initialized during the initialization of SDN Gateway Integration Registration Servlet. As there is no properties file exist for com.ca.spectrum.app.sdn.integration.web.topology.package so its an invalid init-parameter for the SDN Registration Servlet.

Resolution

    1. Stop Tomcat server.


    2. Take backup of $SPECROOT/tomcat/webapps/spectrum/WEB-INF/web.xml file.


    3. Edit this web.xml file and look for com.ca.spectrum.app.sdn.integration.web.topology.package text, it will be like this below:

       <init-param>
            <param-name>com.aprisma.spectrum.resources</param-name>
            <param-value>com.ca.spectrum.app.sdn.integration.web.topology.package</param-value>
       </init-param>
       


   4. Please comment this entire section mentioned above, like this:

 <!--

           <init-param>
            <param-name>com.aprisma.spectrum.resources</param-name>
            <param-value>com.ca.spectrum.app.sdn.integration.web.topology.package</param-value>
       </init-param>

     -->      


    5. Delete the contents of $SPECROOT/tomcat/work directory.


    6. Start Tomcat service.


    7. Monitor the tomcat logs and you should no longer see this error message any more.


init-parameter is initialized during the initialization of SDN Gateway Integration Registration Servlet. As there is no properties file exist for com.ca.spectrum.app.sdn.integration.web.topology.package so its an invalid init-parameter for the SDN Registration Servlet.

Hence need to remove it from web.xml so that when the SDN Registration Servlet gets initiated it does not look for this package, this error message no longer logged.