I asked this in another part of the forum but I think this may have been wrong. The error had EMF in it so I posted there but when thinking about it I think its the wrong place.
I get and error in Eclipse from time to time that says:
An internal error occurred during: "Loading descriptor for p_war.".
org.eclipse.emf.ecore.xmi.IllegalValueException: Value '${p.web.cookies.ssl:true}' is not legal.
It seems to happen whenever I build this particular war or if I run maven update.
Relevant part of my web.xml:
<session-config>
<session-timeout>30</session-timeout>
<cookie-config>
<http-only>true</http-only>
<secure>${pap.web.cookies.ssl:true}</secure>
</cookie-config>
<tracking-mode>COOKIE</tracking-mode>
</session-config>
I'm running this on JBoss EAP 6.4 and it does work, both locally (Windows) and on my linux server. The only problem is that Eclipse keep spamming me with errors.
I have disabled xml validation in my workspace.
I'm running Eclipse 2018-09 (4.9.0)
I do not have access to the internet from the environment that is running Eclipse. This have caused problems before but I have found workarounds.
Essentially, everything is working but Eclipse keeps giving me errors. I just want to get rid of these errors.