Cross-origin resource sharing is a mechanism that allows restricted resources on a web page to be requested from another domain outside the domain from which the first resource was served. In other words, in order to make a successful request from "client" ( a web page on chrome) to a remote server from another domain, the server needs to specify the "client" domain in the response header. Meaning that the IP address or the domain name of the client should be specify in Access-Control-Allow-Origin response header. In our case, the "client" is a web page on chrome and the "remote server" is splunk. To solve our problem we need to return response headers such as Access-Control-Allow-Origin: "client-ip" in the response of our clients' post requests. In addition, It is possible that we will need to add more response header with the format of Access-Control-Allow-XXXX to the responses. 1. How can splunk be configure such that it will specify the origins in the Access-Control-Allow-Origin response header ? 2. How can custom response headers can be configure for the response of splunk post requests ?
... View more