Hello,
I've developed an ADF application and I'm trying to deploy it on a Tomcat Server (7.0.72 or 7.0.82) under port 3000.
These are the steps what I'm doing:
<filter>
<filter-name>CorsFilter</filter-name>
<filter-class>org.apache.catalina.filters.CorsFilter</filter-class>
<init-param>
<param-name>cors.allowed.origins</param-name>
<param-value>http://localhost:8080</param-value>
</init-param>
<init-param>
<param-name>cors.allowed.methods</param-name>
<param-value>GET,POST,PUT,DELETE,HEAD,OPTIONS</param-value>
</init-param>
<init-param>
<param-name>cors.allowed.headers</param-name>
<param-value>Access-Control-Allow-Origin,cache-control,Content-Type,X-Requested- With,Accept,Authorization,Origin,Access-Control-Request-Method,Access-Control-Request-Headers</param-value>
</init-param>
<init-param>
<param-name>cors.exposed.headers</param-name>
<param-value>Access-Control-Allow-Origin,Access-Control-Allow-Credentials</param-value>
</init-param>
<init-param>
<param-name>cors.support.credentials</param-name>
<param-value>true</param-value>
</init-param>
<init-param>
<param-name>cors.preflight.maxage</param-name>
<param-value>10</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>CorsFilter</filter-name>
<url-pattern> /* </url-pattern>
</filter-mapping>
Start the server and the application is deployed. The problem is when I'm logging I'm getting the next error "Request has been terminated Possible causes: the network is offline, Origin is not allowed by Access-Control-Allow-Origin, the page is being unloaded, etc."
However, when I start the angular cli server on my IDE by "npm start" (which start is "start": "ng serve --proxy-config proxy.conf.json") the application works fine.
Do you know where could the problem be?
Thank you!
Solved! Go to Solution.
Hi Yogesh,
Using the last version of ADF and tomcat version (7.0.82) works well.
Regards,
Werner Nähle
I am just starting with ADF. But, one of the requirements in documentaiton is configuring CORS (to allow javascript to make controlled cross-origin resource sharing:
Hi Kendall,
yes, I did too.
Thanks for your answer!
Hi Werner,
Did you ever resolve this issue ? We are facing the same issue.
Thanks,
Yogesh prjapati
Hi Yogesh,
Using the last version of ADF and tomcat version (7.0.82) works well.
Regards,
Werner Nähle
Discussions, help and advice about the Alfresco Development Framework.
By using this site, you are agreeing to allow us to collect and use cookies as outlined in Alfresco’s Cookie Statement and Terms of Use (and you have a legitimate interest in Alfresco and our products, authorizing us to contact you in such methods). If you are not ok with these terms, please do not use this website.