On the client, I have:
<script src="js/plugins/xdomain.min.js" slave="https://api/proxy.html"></script>
Then on the server, I have a 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 xdomain logging:
'proxying request to slave:'
'new socket:'
'Timeout waiting on iframe socket'
I'm not seeing any data being passed to the client - i.e -my models within my controllers are empty.