ssl - Adobe Air Application HTTPS Security Popup -


i have air application communicates quite our server. usually, communication fine, every once in while following popup: "revocation information security certificate site not available. wan proceed?

unfortunately, popup halts communications until end user clicks ok (which problem application not allow user interaction , not accessible locally.

i connecting our website has valid comodo ssl certificate. visiting website causes no popups kind , shows valid.

i have comodo software certificate validating application bundled program.

i using actionscript http services communicate server get/post calls.

checkinservice = new httpservice(); checkinservice.concurrency = concurrency.single; checkinservice.method = "post"; checkinservice.addeventlistener(resultevent.result,sendresult); checkinservice.addeventlistener(faultevent.fault, faultresult); checkinservice.addeventlistener(invokeevent.invoke, invokeattempt); checkinservice.url = "https://www.mywebsite.com"; 

unfortunately, when certificate popup appears, continues popup every call (which on 2 second timer), causing thousands of popups crashing program.

my thoughts following: 1. ensure root certificate installed on pc. 2. install website's certificate trusted certificate 3. add site trusted sites in internet options 4. disable publisher/certification verification in internet options.

i want leave security possible. hints or direction appreciated.

thank in advance.

revocation means, issuer of certificate revoked it. check revocation done after trust path certificate verified, assume not problem trust store on system.

but, after trust path verification browser check revocation. today done ocsp (online certificate status protocol). needs ocsp-url in certificate can asked , ocsp responder @ issuers side, responds ocsp requests on url.

my guess is, problem is, e.g. following might be:

  • the ocsp responder has no revocation information yet, because certificate new (just wait hours in case)
  • the ocsp responder has network or other problems (just wait , retry later)
  • a firewall or similar on site blocking access ocsp responder (check network or ask administrator)

Comments

Popular posts from this blog

c++ - OpenCV Error: Assertion failed <scn == 3 ::scn == 4> in unknown function, -

php - render data via PDO::FETCH_FUNC vs loop -

The canvas has been tainted by cross-origin data in chrome only -