-
1. Re: Missing Configuration File
ctomc Apr 7, 2019 3:27 PM (in response to braincrush7)Well you trimmed the error report so finely that most of useful info is missing...
But from general error message only thing that can be said is that your application (some component probably) is referring to some bean/resource named "Configuration" that is not available.
could it be something that is in JNDI, but without full log it is hard to say.
-
2. Re: Missing Configuration File
braincrush7 Apr 9, 2019 12:34 PM (in response to ctomc)Hey,
I actually just used the deployed.failed file instead of the command-line transcript. But I managed to solve the problem.
It turned out that ServiceName wasn't seeing the SystemProperties it needed to.
The solution to it was to make a configurations folder that I placed inside <JBoss_Home>/modules/configurations/... Afterwards created a ServiceName_War.Configurations classpath variable through JBoss admin (Configurations -> System Properties). This allowed my application to see all of the System Properties. In addition, I needed to modifications to web.xml's display name as some of the system properties name are based off of it. Not sure if that is what you meant by JNDI.