Pluggable protocol and mixed content - silently show non-secure content

Answered Pluggable protocol and mixed content - silently show non-secure content

  • vendredi 27 avril 2012 21:38
     
     

    Hello all,

    I have a pluggable protocol that by default delivers secure content. Sometimes, however I need to show content that comes over non-secure http://. This is where I get this message:

    "Do you want to view only the page content that was delivered securely?"

    I tried to implement IHttpSecurity in my APP but that didn't yield anything. What interface do I need to implement to silently suppress this message?

    Thanks,
    Yuriy

Toutes les réponses

  • vendredi 27 avril 2012 21:46
     
     Traitée

    On 4/27/2012 5:38 PM, Yuriy Gettya wrote:

    I have a pluggable protocol that by default delivers secure content. Sometimes, however I need to show content that comes over non-secure http://. This is where I get this message:

    "Do you want to view only the page content that was delivered securely?"

    I tried to implement IHttpSecurity in my APP but that didn't yield anything. What interface do I need to implement to silently suppress this message?

    IInternetProtocolInfo::QueryInfo, in particular QUERY_IS_SECURE


    Igor Tandetnik

    • Marqué comme réponse Yuriy Gettya vendredi 27 avril 2012 21:50
    •  
  • vendredi 27 avril 2012 21:50
     
     

    Silly me ... I forgot that I respond TRUE to QUERY_IS_SECURE ...

    Thank you, Igor.