Flex3中的TLS支持

时间:2015-02-17 04:59:38

标签: actionscript-3 flex ssl https air

我有一个AIR桌面应用程序,可以对某些API进行https调用。这曾经正常工作。

但在support for ssl was disabled by the Paypal API之后,调用返回2032 IOerror。

以下是拨打电话的代码段:

            public var _service:HTTPService;

            this._service = new HTTPService();

            this._service.url = 'endpoint';

            this._service.resultFormat = "text";

            this._service.method = "POST";

            this._service.send();

            this._service.addEventListener(ResultEvent.RESULT, resultHandler);

            this._service.addEventListener(FaultEvent.FAULT, faultHandler);

flex是否支持使用TLS协议的https呼叫?

有办法解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

在Windows Internet Explorer"使用TLS选项"在工具下 - > Internet选项未选中。 启用该选项后,呼叫正常。