Hello, I tried toenable Jetty to accepts CORS requests by adding to web.xml, the followinglines: <filter> <filter-name>cross-origin</filter-name> <filter-class>org.eclipse.jetty.servlets.CrossOriginFilter</filter-class> <init-param> <param-name>allowedOrigins</param-name> <param-value></param-value> </init-param> <init-param> <param-name>allowedMethods</param-name> <param-value></param-value> </init-param> <init-param> <param-name>allowedHeaders</param-name> <param-value></param-value> </init-param></filter><filter-mapping> <filter-name>cross-origin</filter-name> <url-pattern>/*</url-pattern></filter-mapping> However,now when I try to start BaseX 7.9 Server, I only get a message “Can’t communicatewith the server”. The message persists even though I removed the added lines toweb.xml and restarted my PC (I’m on Win8). Could youplease give me some light on how can I get BaseX Server to work again? And, howcan I enable BaseX/Jetty Server for CORS requests? Thank youvery much for any help. Regards, Alex
basex-talk@mailman.uni-konstanz.de