~~NOTRANS~~ ~~Title: Using REST Services With CORS~~ Details about [[https://en.wikipedia.org/wiki/Cross-origin_resource_sharing|CORS]]. JVx' REST services support CORS since [[http://restlet.com/|RESTlet]] update to 2.3.2. This version has the class CorsFilter which handles CORS automatically. CORS support is disabled by default. If you want to call your REST service from "another domain", simply enable CORS via web.xml: RestletServlet org.restlet.ext.servlet.ServerServlet org.restlet.application com.sibvisions.rad.server.http.rest.RESTAdapter cors.origin * RestletServlet /services/rest/* The init parameter cors.origin takes a comma separated list or simply * (for all sites).