We encounter an issue in our Struts application where intermittently we'll get namespace not found error. If this happens, we would explicitly like to load the configuration & package & action settings stated in struts.xml.
We thought doing
Dispatcher.getInstance().getConfigurationManager().reload();
will fix the issue but still at times we get namespace not found error.
Is there a way to explicitly LOAD struts.xml
file programmatically?