Skip to main content
Participant
December 15, 2018
Question

how https SSL Client Side Certificate authentication works in Adobe Air

  • December 15, 2018
  • 1 reply
  • 380 views

In Android and Windows

how https SSL Client Side Certificate authentication works in Adobe Air. I couldn't find any Documents on web

-The Standard SSL Handshake

- Install a digital certificate etc...

loader = new URLLoader();

  configureListeners(loader);

  var request:URLRequest = new URLRequest("https://url...");

  try {

  loader.load(request);

  } catch (error:Error) {

  trace("Unable to load requested document.");

  }

This topic has been closed for replies.

1 reply

Known Participant
December 20, 2018

Try using a httpClient that supports https. We used this one as a base, but had to make some updates to it. I’ll try to post a link to the updated library. Wish Adobe would support this stuff more.

GitHub - gabriel/as3httpclient: HTTP Client for AS3