The classic "Origin ... is not resolved by the Access-Control-Allow-Origin problem." Two machines serve content for the same website. When machine A executes $('#main').load('link_to_resource_on_B') through jquery, machine B serves the contents using mod_python, adding the header Access-Control-Allow-Origin: * . But for some reason this still doesn't work. I tested this in Chrome, Safari, and Internet Explorer. And I checked through the command line to check the response header, it seems that Access-Control-Allow-Origin: * successfully in the header from B. See below. What can i skip?
$ telnet localhost 80 Trying ::1... Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. GET /tests/python/test/env HTTP/1.1 host: 10.0.1.10 HTTP/1.1 200 OK Date: Mon, 27 Feb 2012 02:05:33 GMT Server: Apache/2.2.20 (Ubuntu) Access-Control-Allow-Origin: * Vary: Accept-Encoding Transfer-Encoding: chunked Content-Type: text/html
source share