crossdomain.xml - 无法访问 Google Geocode API

发布于 2024-11-16 07:10:41 字数 834 浏览 3 评论 0原文

我遇到了流行的安全沙箱违规...

我使用 Google Maps Flex API,现在我想访问 Google Geocoding API 。为此,我使用 HTTPService:

<s:HTTPService id="geo_req" url="http://maps.googleapis.com/maps/api/geocode/xml?address={i_address}" result="geo_req_resultHandler(event)" />

但我遇到了沙箱安全违规。因此,我将 crossdomain.xml 创建为:

<cross-domain-policy xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:noNamespaceSchemaLocation="http://www.adobe.com/xml/schemas/PolicyFile.xsd">
<allow-access-from domain="*" secure="false" />
<allow-http-request-headers-from domain="*" headers="*"/>
</cross-domain-policy> 

我使用 WAMP 服务器,并且可以通过键入 http://localhost/crossdomain 来访问该文件。 xml ... 我仍然无法访问该网址。

我怎样才能摆脱这个?

I'm experiencing the popular Security Sandbox violation...

I use Google Maps Flex API and now i want to access the Google Geocoding API . For this , i use the HTTPService :

<s:HTTPService id="geo_req" url="http://maps.googleapis.com/maps/api/geocode/xml?address={i_address}" result="geo_req_resultHandler(event)" />

But i got Sandbox Security violation . So i've created crossdomain.xml as :

<cross-domain-policy xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:noNamespaceSchemaLocation="http://www.adobe.com/xml/schemas/PolicyFile.xsd">
<allow-access-from domain="*" secure="false" />
<allow-http-request-headers-from domain="*" headers="*"/>
</cross-domain-policy> 

I use WAMP server and can access the file by typing http://localhost/crossdomain.xml ...
Still i can't access the url.

How can i get rid of this ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

就像说晚安 2024-11-23 07:10:41

您需要将 CrossDomain.xml 文件放在您要向发送请求的域中。

You need to put the CrossDomain.xml file on the domain you're sending the request to.

南渊 2024-11-23 07:10:41

为什么不使用现有的 ClientGeoCoder 类对您的地址进行地理编码,而不是向 Google 网站发出 HTTP 请求?

您是否成功运行此链接上的示例:http://code.google.com/p/gmaps-samples-flash/source/browse/trunk/samplecode/GeocodingSimple.mxml

why don't you use the existing class ClientGeoCoder to geocode your address, instead of making an HTTP request to the Google site?

Do you successfully run the example on this link: http://code.google.com/p/gmaps-samples-flash/source/browse/trunk/samplecode/GeocodingSimple.mxml ?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文