how https SSL Client Side Certificate authentication works in Adobe Air
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.");
}
