我正在尝试使用SSL查看网站中的Google图表。
Google Charts不支持SSL,因此如果我们使用标准图表,我们会收到警告消息。
我的计划是在安全网站中创建一个ASHX处理程序,该处理程序将从Google检索内容并将其提供给用户正在查看的页面。
使用VS 2008 SP1和附带的Web服务器,我的想法适用于Firefox和IE 8& 9(预览),我能够看到我的页面上显示的地理信息应该如此。但我的问题是,当我使用我的处理程序向IIS7发布页面时,在Firefox中生成geomap而不是IE(每个版本)。
在任何地方或任何日志文件中都没有错误,但是当我在显示地图的区域中右键单击IE时,我在上下文菜单中看到“未加载电影”的消息
以下是我的处理程序和aspx页面的代码。
我在web.config中禁用了压缩。
即使在IE中我也遇到了所有的断点,当我使用IE9开发人员工具时,网页会正确生成所有正确的代码,网址和引用。
如果你有更好的方法来解决我的问题,我会很感激。
谢谢
伊恩
处理程序(ASHX)
public void ProcessRequest(HttpContext context)
{
String url = "http://charts.apis.google.com/jsapi";
string query = context.Request.QueryString.ToString();
if (!string.IsNullOrEmpty(query))
{
url = query;
}
HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(new Uri(HttpUtility.UrlDecode(url)));
request.UserAgent = context.Request.UserAgent;
WebResponse response = request.GetResponse();
string PageContent = string.Empty;
StreamReader Reader;
Stream webStream = response.GetResponseStream();
string contentType = response.ContentType;
context.Response.BufferOutput = true;
context.Response.ContentType = contentType;
context.Response.Cache.SetCacheability(HttpCacheability.NoCache);
context.Response.Cache.SetNoServerCaching();
context.Response.Cache.SetMaxAge(System.TimeSpan.Zero);
string newUrl = IanLearning.Properties.Settings.Default.HandlerURL; //"https://localhost:444/googlesecurecharts.ashx?";
if (response.ContentType.Contains("javascript"))
{
Reader = new StreamReader(webStream);
PageContent = Reader.ReadToEnd();
PageContent = PageContent.Replace("http://", newUrl + "http://");
PageContent = PageContent.Replace("charts.apis.google.com", newUrl + "charts.apis.google.com");
PageContent = PageContent.Replace(newUrl + "http://maps.google.com/maps/api/", "http://maps.google.com/maps/api/");
context.Response.Write(PageContent);
}
else
{
{
byte[] bytes = ReadFully(webStream);
context.Response.BinaryWrite(bytes);
}
}
context.Response.Flush();
response.Close();
webStream.Close();
context.Response.End();
context.ApplicationInstance.CompleteRequest();
}
ASPX页面
<%@ Page Title="" Language="C#" MasterPageFile="~/Site2.Master" AutoEventWireup="true"
CodeBehind="googlechart.aspx.cs" Inherits="IanLearning.googlechart" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
<script type='text/javascript' src='~/googlesecurecharts.ashx?'></script>
<script type='text/javascript'>
google.load('visualization', '1', { 'packages': ['geomap'] });
google.setOnLoadCallback(drawMap);
var geomap;
function drawMap() {
var data = new google.visualization.DataTable();
data.addRows(6);
data.addColumn('string', 'City');
data.addColumn('number', 'Sales');
data.setValue(0, 0, 'ZA');
data.setValue(0, 1, 200);
data.setValue(1, 0, 'US');
data.setValue(1, 1, 300);
data.setValue(2, 0, 'BR');
data.setValue(2, 1, 400);
data.setValue(3, 0, 'CN');
data.setValue(3, 1, 500);
data.setValue(4, 0, 'IN');
data.setValue(4, 1, 600);
data.setValue(5, 0, 'ZW');
data.setValue(5, 1, 700);
var options = {};
options['region'] = 'world';
options['dataMode'] = 'regions';
options['showZoomOut'] = false;
var container = document.getElementById('map_canvas');
geomap = new google.visualization.GeoMap(container);
google.visualization.events.addListener(
geomap, 'regionClick', function(e) {
drillDown(e['region']);
});
geomap.draw(data, options);
};
function drillDown(regionData) {
alert(regionData);
}
</script>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<div id='map_canvas'>
</div>
</asp:Content>