gpt4 book ai didi

Flash Builder 4 安全错误访问 url 目标 : DefaultHTTP

转载 作者:行者123 更新时间:2023-12-02 04:11:16 24 4
gpt4 key购买 nike

我构建了一个 FB4 应用程序,它可以访问合作伙伴公司的 .NET Web 服务。该应用程序在 FB4 开发环境中运行良好,但在发布到我的服务器时无法运行。我不知道如何克服以下错误:

Security error accessing url Destination: DefaultHTTP


我不太可能在他们的服务器上得到一个 crossdomain.xml 文件,所以我试图使用代理让它工作。 proxy.php 与 swf 位于同一目录中,如果我直接在浏览器中使用它,它就可以正常工作。
以下是我目前的设置:
代理.php:
<?php
$session = curl_init(trim(urldecode($_GET['url']))); // Open the Curl session
curl_setopt($session, CURLOPT_HEADER, false); // Don't return HTTP headers
curl_setopt($session, CURLOPT_RETURNTRANSFER, true); // Do return the contents of the call
$xml = curl_exec($session); // Make the call
header("Content-Type: text/xml"); // Set the content type appropriately
echo $xml; // Spit out the xml
curl_close($session); ?>
Flash Builder 4 中的代码(我在 FB4 中使用 Webservice 对象):
wsdl = http://example.com/autoben/proxy2.php?url=http://staging.partnerCompany.net/api/v01_00/theservice.asmx?wsdl
Flash 播放器是 10.x 版
我显然不了解内置在最新 Flash 播放器中的新安全规则。
A 截图可以在这里看到错误:
flex error

最佳答案

听起来像是跨域策略问题。在这里查看 http://livedocs.adobe.com/flex/3/html/help.html?content=security2_04.html Adobe 的建议。

关于Flash Builder 4 安全错误访问 url 目标 : DefaultHTTP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5081454/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com