云环境中Jquery Get调用失败

云环境中Jquery Get调用失败,jquery,asp.net-mvc-4,azure,Jquery,Asp.net Mvc 4,Azure,我通过J-QueryAjax获取请求从数据库中提取一些值 /Helper/ActionName?imageids=1%2C2%2C3%2C4%2C5 Jquery代码片段 $.ajax({ url: AcredationUri, data: { imageids: accredationlist }, //accredationlist type: 'GET', traditional: true

我通过J-QueryAjax获取请求从数据库中提取一些值

/Helper/ActionName?imageids=1%2C2%2C3%2C4%2C5
Jquery代码片段

 $.ajax({
            url: AcredationUri,
            data: { imageids: accredationlist }, //accredationlist
            type: 'GET',
            traditional: true,
            async: true,
            success: function (data) {
                if (data != null && data.length > 0) {
                    acccontent = '';
                    $(data).each(function () {
                        acccontent += buildAccedationAccord(this);
                    });
                }
                $('#' + hid).find('.acimg').append(acccontent);
                $('#' + hid).find('.acimg').unblock();
            }
        });
但这在仿真器环境中起作用,并生成数据。但同样的代码不适用于云环境

firebug中捕获的响应是XML解析错误:未找到元素位置:moz nullprincipal:{388b700f-8bb6-4ae5-a926-8d8fb6ec8c4c}行号1,第1列:

注意:我没有进行任何跨域呼叫。但提示的错误是关于跨域的

fiddler没有报告任何异常情况

HTTP/1.1 200 OK
Cache-Control: private
Server: Microsoft-IIS/8.0
X-AspNetMvc-Version: 4.0
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Date: Tue, 24 Sep 2013 05:04:04 GMT
Content-Length: 0
我期待着这个方法的JSON响应。但我无法找出这里的问题所在