12-04-2017 09:42 AM
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!
05-03-2018 11:06 AM
Hi Yogesh,
Using the last version of ADF and tomcat version (7.0.82) works well.
Regards,
Werner Nähle
12-09-2017 12:58 PM
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:
12-11-2017 03:59 AM
Hi Kendall,
yes, I did too.
Thanks for your answer!
05-03-2018 11:01 AM
Hi Werner,
Did you ever resolve this issue ? We are facing the same issue.
Thanks,
Yogesh prjapati
05-03-2018 11:06 AM
Hi Yogesh,
Using the last version of ADF and tomcat version (7.0.82) works well.
Regards,
Werner Nähle
Explore our Alfresco products with the links below. Use labels to filter content by product module.