In my application I am using APE for getting the async updates from other users. Now it is working for a particular domain (abc.com), but now my user (company) wants to use xyz.com for company.abc.com, i have done this by creating CNAME. But now APE gives the following error
Uncaught Error: SECURITY_ERR: DOM Exception 18
What does that mean?
Hey i resolved this issue.
APE has cross domain transport available & possible, please refer,
I was using the
APE.Config.transport = 1; which i changed to
APE.Config.transport = 2; // 2 is JSONP
It worked cool for me :)