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
@jorgejesus How did you implement the CORS?. Did you have a problem with implementing this?
I think the image provides you with an option to include the CORS. The structure of the web.xml comes from tomcat and how you test the request seems like a user issue more than the image does not do this.
The image doesn't implement CORS and this is required for webgis developments
Tryied to implement CORS on
/usr/local/tomcat/conf/web.xml
By adding the following configuration:
But still there was problems with CORS not being suported on Chrome (Linux) v71
Some explanation has been found here:
https://stackoverflow.com/a/24390640/1140558
https://stackoverflow.com/a/39733875/1140558
Seems that setting Origin on a request it works and gets the proper headers back:
curl -I -H 'Origin: http://www.example.com' http://localhost:8080/geoserver
The text was updated successfully, but these errors were encountered: