reading network xml file

reading network xml file

I am trying to read xml file lying on network path  like : "\\abc.com\testdata\test\test.xml"
I always get error function called with this(below code), but if place xml file under my solution and change url to just "test.xml" then it works fine. Can anybody tell what's wrong going on here.


$.ajax({
        type: "GET",
        url:  "\\\\abc.com\\testdata\\test\\test.xml",
        dataType: "xml",
        success: function (xml) {            
                $(this).find('item').each(function () {
                    var titleItem = $(this).find('title').text();                   
                });
            });
        },
        error: function () {
            alert("An error occured while processing xml file.");
        }
    });