views:

31

answers:

2

Do any browsers follow cross-domain 301 redirects when processing XmlHTTPRequests (or any other method a page can get the contents of another)

+1  A: 

No. You can't use a 301 to work around the same origin policy.

David Dorward
A: 

You need to setup a cross-domain proxy, and one should exist for your web application platform. These are commonly used by social networks to bypass the same-origin policy.

Rook