You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 2, 2024. It is now read-only.
I have been able to compile the project with Maven and NPM, but have since run
into issues with logging in to the Europass and viewing the diploma pages. I
have done as follows, with slight modifications to the actual contents of
certain strings:
copied the contents of configuration/documentation/mvn_settings.xml into
the file $HOME/.m2/settings.xml,
installed the .jar files in configuration/external_libs/ into my local
Maven repository $HOME/.m2/repository/, so that Maven can locate them
during the project build process,
disabled any malfunctioning tests that prevent Maven from compiling the
project,
built the project with Maven and NPM in that order and
placed the generated .war files into my tomcat/webapps/ folder.
I am able to start up the Angular front-end server at localhost:4200
by running
ng serve --open
in edci-viewer/edci-viewer-web/src/main/angular, as can be seen in the below video.
europass_login_issue.mp4
The error seen in the lower right corner turns out to be the result of a CORS
violation. This is strange, because the file
Now, Tomcat itself is running at localhost:8080, as can be verified by
running the command systemctl status tomcat (and just by looking at the fact
that the 404 page was displayed in the first place):
2021-09-16 10:41:51,665 [http-nio-8080-exec-5] ERROR ContextLoader - - Context initialization failed
org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [eu.europa.ec.empl.edci.viewer.service.ViewerConfigService]; nested exception is java.io.FileNotFoundException: /opt/tomcat/apache-tomcat-8.5.70/conf/edci/viewer/viewer.properties (No such file or directory)
at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:189)
at org.springframework.context.annotation.ConfigurationClassPostProcessor.processConfigBeanDefinitions(ConfigurationClassPostProcessor.java:319)
at org.springframework.context.annotation.ConfigurationClassPostProcessor.postProcessBeanDefinitionRegistry(ConfigurationClassPostProcessor.java:236)
at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanDefinitionRegistryPostProcessors(PostProcessorRegistrationDelegate.java:280)
at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:96)
at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:707)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:533)
at org.springframework.web.context.ContextLoader.configureAndRefreshWebApplicationContext(ContextLoader.java:401)
at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:292)
at org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:103)
at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4763)
at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5232)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
at org.apache.catalina.manager.ManagerServlet.start(ManagerServlet.java:1405)
at org.apache.catalina.manager.HTMLManagerServlet.start(HTMLManagerServlet.java:697)
at org.apache.catalina.manager.HTMLManagerServlet.doPost(HTMLManagerServlet.java:216)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
at org.apache.catalina.filters.CsrfPreventionFilter.doFilter(CsrfPreventionFilter.java:211)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
at org.apache.catalina.filters.HttpHeaderSecurityFilter.doFilter(HttpHeaderSecurityFilter.java:126)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
at org.apache.catalina.filters.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:109)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:196)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:669)
at org.apache.catalina.valves.RequestFilterValve.process(RequestFilterValve.java:378)
at org.apache.catalina.valves.RemoteAddrValve.invoke(RemoteAddrValve.java:56)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81)
at org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:698)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:364)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:624)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:831)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1650)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)
at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.lang.Thread.run(Thread.java:748)
Caused by: java.io.FileNotFoundException: /opt/tomcat/apache-tomcat-8.5.70/conf/edci/viewer/viewer.properties (No such file or directory)
at java.io.FileInputStream.open0(Native Method)
at java.io.FileInputStream.open(FileInputStream.java:195)
at java.io.FileInputStream.<init>(FileInputStream.java:138)
at java.io.FileInputStream.<init>(FileInputStream.java:93)
at sun.net.www.protocol.file.FileURLConnection.connect(FileURLConnection.java:90)
at sun.net.www.protocol.file.FileURLConnection.getInputStream(FileURLConnection.java:188)
at org.springframework.core.io.UrlResource.getInputStream(UrlResource.java:186)
at org.springframework.core.io.support.EncodedResource.getInputStream(EncodedResource.java:159)
at org.springframework.core.io.support.PropertiesLoaderUtils.fillProperties(PropertiesLoaderUtils.java:99)
at org.springframework.core.io.support.PropertiesLoaderUtils.fillProperties(PropertiesLoaderUtils.java:73)
at org.springframework.core.io.support.PropertiesLoaderUtils.loadProperties(PropertiesLoaderUtils.java:59)
at org.springframework.core.io.support.ResourcePropertySource.<init>(ResourcePropertySource.java:67)
at org.springframework.core.io.support.DefaultPropertySourceFactory.createPropertySource(DefaultPropertySourceFactory.java:37)
at org.springframework.context.annotation.ConfigurationClassParser.processPropertySource(ConfigurationClassParser.java:463)
at org.springframework.context.annotation.ConfigurationClassParser.doProcessConfigurationClass(ConfigurationClassParser.java:280)
at org.springframework.context.annotation.ConfigurationClassParser.processConfigurationClass(ConfigurationClassParser.java:250)
at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:199)
at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:181)
... 50 more
16-Sep-2021 10:41:51.668 SEVERE [http-nio-8080-exec-5] org.apache.catalina.core.StandardContext.startInternal One or more listeners failed to start. Full details will be found in the appropriate container log file
16-Sep-2021 10:41:51.669 SEVERE [http-nio-8080-exec-5] org.apache.catalina.core.StandardContext.startInternal Context [/europass2/edci-viewer] startup failed due to previous errors
In other words, the viewer.properties file located in the sources and whose
contents contain a CORS whitelist must not have been placed into a correct
location in the .war file generated by the Maven build.
Now, I am still learning the technologies used here, and apparently an instance
of a MitreID server also needs to be set up as well to make this work, but
since some settings seem to be off from the get-go, there is not much I can do.
I can program, but I can't know how a system is supposed to work without these
semantic errors (?), if there is no documentation of how these different components
are supposed to be integrated.
My question then is, what exactly do I need to set up (and how) to be able to
log into Europass locally, and is everything in the settings (disregarding any
user-defined admin usernames and passwords) as intended? If it is not, what do
I need to change to have the compilation process work as intended, such as having
the viewer.properties file properly copied to a desired location?
The text was updated successfully, but these errors were encountered:
Or maybe the .properties file is to be copied manually to the Tomcat conf folder? If so, it wouldn't hurt to know what else needs to be deployed manually. Maybe a clear mention in the documentation for any Tomcat newcomers would be in place?
indicated by the error message in catalina.out did not resolve the issue. Tomcat still complains about a missing file in exactly the same manner, even after it has been restarted.
Edit: this should not be a permissions issue, as Tomcat is the sole owner of the $CATALINA_HOME directory.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I have been able to compile the project with Maven and NPM, but have since run
into issues with logging in to the Europass and viewing the diploma pages. I
have done as follows, with slight modifications to the actual contents of
certain strings:
copied the contents of
configuration/documentation/mvn_settings.xml
intothe file
$HOME/.m2/settings.xml
,installed the
.jar
files inconfiguration/external_libs/
into my localMaven repository
$HOME/.m2/repository/
, so that Maven can locate themduring the project build process,
disabled any malfunctioning tests that prevent Maven from compiling the
project,
built the project with Maven and NPM in that order and
placed the generated
.war
files into mytomcat/webapps/
folder.I am able to start up the Angular front-end server at
localhost:4200
by running
in
edci-viewer/edci-viewer-web/src/main/angular
, as can be seen in the below video.europass_login_issue.mp4
The error seen in the lower right corner turns out to be the result of a CORS
violation. This is strange, because the file
says the following:
Now, Tomcat itself is running at
localhost:8080
, as can be verified byrunning the command
systemctl status tomcat
(and just by looking at the factthat the 404 page was displayed in the first place):
Logging in to the Tomcat manager app also reveals, that the
.war
files havebeen deployed successfully:
However, trying to actually start the webapps up in the manager results in an
error
Looking into the logs in
reveals the following:
In other words, the
viewer.properties
file located in the sources and whosecontents contain a CORS whitelist must not have been placed into a correct
location in the
.war
file generated by the Maven build.Now, I am still learning the technologies used here, and apparently an instance
of a MitreID server also needs to be set up as well to make this work, but
since some settings seem to be off from the get-go, there is not much I can do.
I can program, but I can't know how a system is supposed to work without these
semantic errors (?), if there is no documentation of how these different components
are supposed to be integrated.
My question then is, what exactly do I need to set up (and how) to be able to
log into Europass locally, and is everything in the settings (disregarding any
user-defined admin usernames and passwords) as intended? If it is not, what do
I need to change to have the compilation process work as intended, such as having
the
viewer.properties
file properly copied to a desired location?The text was updated successfully, but these errors were encountered: