I think the answer to this question is "no", but I thought I'd ask here to be sure. I am writing a web application and I need to access JavaScript code from a subdomain on another domain. This isn't allowed by web browsers because it's considered cross-site scripting.
This whole problem would go away if both machines could somehow be mapped to the same domain and just route the individual page requests to the correct place. So http://example.com/App1.aspx
and http://example.com/App2.aspx
would actually sit on separate machines.
Is this technically possible?
Thanks for any help.