Carl:
The XMLHttpRequest() object has a restriction to deny access to a fully qualified URL even though it is in the same domain.
So, for a page served from http://htmldb.oracle.com, if I do
var x=new XMLHttpRequest()
x.open("GET","http://oracle.com",true)
the x.open throws a Permission Denied exception.
Is there a way around this? I saw many hacks out there but nothing definitive and cross-browser. Most of them involved using the document.domain property and iframes and stuff. Is there a simpler way?
Thanks