0

XML 出力を生成する aspx ファイルがあります。別のページでは、XMLHttpRequest オープン メソッドを使用して、aspx ファイルから出力された XML を読み取ろうとしています。FF、IE、Safari は Chrome を除いてすべて動作するようです。ただし、chrome では、アドレス バーの aspx ページに直接移動すると、期待どおりに xml が生成されます。どんな助けでも大歓迎です。

aspx コードは次のとおりです。

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ProviderFinderXML.aspx.cs" Inherits="Pages_ProviderFinderXML" %>

<%@ OutputCache Duration="6" VaryByParam="Type" %>

Aspx コード ビハインド:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

using System.Xml;
using System.ServiceModel.Syndication;
using System.Text;
using System.Data;

public partial class Pages_ProviderFinderXML : System.Web.UI.Page
{    
    protected string appPath = Helper.GetApplicationPath();
    private DataTable dataTable, dataTable2;
    private Helper helper = new Helper();

    protected void Page_Load(object sender, EventArgs e)
    {

    }


    protected override void OnInit(EventArgs e)
    {
        float center_lat = 0, center_lng = 0;
        int radius = 0;
        if (Request.QueryString["lat"] != null)
            center_lat = Common.ConvertToFloat(Request.QueryString["lat"].ToString());
        if (Request.QueryString["lng"] != null)
            center_lng = Common.ConvertToFloat(Request.QueryString["lng"].ToString());
        if (Request.QueryString["radius"] != null)
            radius = Common.ConvertToInt(Request.QueryString["radius"].ToString());
        int categoryId = 0;
        if (Request.QueryString["categoryId"] != null)
            categoryId = Common.ConvertToInt(Request.QueryString["categoryId"].ToString());

        Response.Buffer = false;
        Response.Clear();
        Response.ContentType = "application/xml";
        XmlTextWriter xmlWriter = new XmlTextWriter(Response.Output);
        xmlWriter.WriteStartDocument();

        xmlWriter.WriteStartElement("markers");

        int perPage = 0, currentPage = 1;

        dataTable = helper.DIR_GetNearbyDirectoryMembersByLatLng(center_lat, center_lng, radius, categoryId, perPage, currentPage);

        if (dataTable.Select().Length > 0)
        {
            xmlWriter.WriteAttributeString("title", cRow["title"].ToString().Replace("'", "\\'"));
        }
        xmlWriter.WriteEndDocument();

        xmlWriter.Flush();

        xmlWriter.Close();

        base.OnInit(e);

        Response.Close();
    }


    private string GetFullyQualifiedUrl(string url)
    {
        return string.Concat(Request.Url.GetLeftPart(UriPartial.Authority), ResolveUrl(url));
    }

}

その aspx ページを呼び出すテスト ページのコード部分は次のとおりです。

<script type="text/javascript">

            $(document).ready(function () {
                searchLocationsNear();
            });

            function searchLocationsNear() {
                var searchUrl = 'http://localhost/integrativediagnosis2/Pages/ProviderFinderXML.aspx?lat=42.3584308&lng=-71.0597732&radius=20';
                var xmlhttp;
                if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari
                    xmlhttp = new XMLHttpRequest();
                }
                else {// code for IE6, IE5
                    xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
                }
                xmlhttp.open("GET", "ProviderFinderXML.aspx?lat=42.3584308&lng=-71.0597732&radius=20", false);
                xmlhttp.send();
            }

        </script>
4

1 に答える 1

1

手作りの呼び出しの代わりに JQuery.ajax を使用してください。

Fiddler またはその他の HTTP トレース ツールを使用して、すべての要求が期待どおりに送受信されることを確認します。

私はすぐに間違っているとは思いません。出力を読み取るコードがないため、「Chrome では機能しない」という意味が明確ではありません。

于 2012-04-05T18:14:07.470 に答える