On the client, I have:
<script src="js/plugins/xdomain.min.js" slave="https://api/proxy.html"></script>
Then on the server I have proxy.html with:
<!DOCTYPE HTML>
<script src="js/xdomain.min.js"></script>
<script>
xdomain.masters({
"https://*.localhost" : '/.*/',
"https://*.host.net" : '/.*/'
});
</script>
In dev tools on IE9, I have an entry in the xdomain domain:
'proxying request to slave:'
'new socket:'
'Timeout waiting on iframe socket'
I do not see any data being passed to the client - i.e.-my models inside my controllers are empty.
source
share