I am compiling a small tool that some businessmen can run on their local file systems, because we do not want to set a host for it.
Basically, its just HTML + Javascript (using jQuery) pulls some reports using REST from a third party.
The problem is that FF3 and IE do not allow ajax call, I get:
Access to restricted URI denied" code: "1012
Obviously this is an XSS problem ... how do I get around it? The returned data is in XML format.
I tried to do it like this:
$.get(productUrl, function (data){
alert (data);
});
EDIT . To be clear ... I am not setting up an internal host for this (the path to multiple tape), and we CANNOT accept it from the outside due to the data being retrieved.
EDIT # 2: , IFRAME . - , IFRAME?