Erreur: "Origine null n'est pas autorisé par Access-Control-Allow-Origin" lors du chargement d'un fichier XML avec la méthode ajax de JQuery

C'est mon code:

this.loadMap = function () {
    this._map = null;
    this._width = 0;
    this._height = 0;
    this._playerX = 0;
    this._playerY = 0;
    this.finished = false;
    this.loaded = false;
    $.ajax({
        type: "GET",
        url: "maze1.xml",
        dataType: "xml",
        success: this.parseXmlMap,
        context: this
    });
};

L'erreur que j'obtiens est

"XMLHttpRequest ne peut pas charger
file:///C:/wamp/www/mazegame/maze1.xml.
Origine null n'est pas autorisé par
Access-Control-Allow-Origin".

Ce même script fonctionne très bien dans Firefox

source d'informationauteur eabait