crossdomain.xml - 无法访问 Google Geocode API
我遇到了流行的安全沙箱违规...
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要将 CrossDomain.xml 文件放在您要向发送请求的域中。
You need to put the CrossDomain.xml file on the domain you're sending the request to.
为什么不使用现有的 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 ?