I am looking for a way to make a request to an XML service from javascript.
Actually I am using JQuery, and I'm trying to use this plugin: http://james.padolsey.com/javascript/cross-domain-requests-with-jquery/, but it doesn't work with XML.
There is an alternative way to consume JSON, which is JSONP, but it doesn't work with XML.
Every time I try to make a request to other site, with XML data, I get something like this:
Origin null is not allowed by Access-Control-Allow-Origin.
The other thing, I need to implement this without proxy, just solve it in client side.