function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Alex Youroukelis 4Alex Youroukelis 4 

SEC7111: HTTPS security is compromised

I have added the following to an existing VF page:

<apex:pageBlockSection >
      <apex:pageBlockSectionItem >
              <apex:outputLabel value="Help"/>
                      <apex:outputLink onclick="window.open('https://c.cs6.visual.force.com/apex/InteractionSubTypeHelp','_blank','toolbar=false, scrollbars=yes, resizable=yes, top=200, left=200, width=1050, height=500');">Sub Type Definitions</apex:outputLink>
      </apex:pageBlockSectionItem>
</apex:pageBlockSection>

This opens another VF page as a pop up window.

Works ok in Chrome and Firefox

User-added image

However, in IE 9 and above, the VF page opens in the pop up window as expected , however, the URL of the original VF page is truncated resulting in an invalid URL error:

User-added image

The cause of this appears to be:

SEC7111: HTTPS security is compromised by .https://localhost/index.html?sfdcIFrameOrigin=https%3A%2F%2Fc,cs6.visualforce.com.....

User-added image


I beleive that this is IE's way of blocking mixed content.

Any ideas on how to get around this would be most appreciated.

Thanks in advance
Best Answer chosen by Alex Youroukelis 4
Alex Youroukelis 4Alex Youroukelis 4
This post was helpful:

https://developer.salesforce.com/forums/ForumsMain?id=906F000000095WAIAY

Managed to get it working as expected:

<apex:pageBlockSection >
     <apex:pageBlockSectionItem >
          <apex:outputLabel value="Help"/>
           <apex:outputLink onclick="window.open('https://c.cs6.visual.force.com/apex/InteractionSubTypeHelp','_blank','toolbar=false, scrollbars=yes, resizable=yes, top=200, left=200, width=1050, height=500'); return false;">Sub Type Definitions</apex:outputLink>
      </apex:pageBlockSectionItem>
</apex:pageBlockSection>

All Answers

NehalNehal (Salesforce Developers) 
Hi,

Please check your IE settings with below link:-

1.https://help.salesforce.com/apex/HTViewHelpDoc?id=getstart_browser_ie.htm&language=en_US#getstart_browser_ie

2.https://help.salesforce.com/apex/HTViewHelpDoc?id=getstart_browser_overview.htm&language=en

I hope this helps.
Alex Youroukelis 4Alex Youroukelis 4
Unfortunately that hasn't helped
Alex Youroukelis 4Alex Youroukelis 4
This post was helpful:

https://developer.salesforce.com/forums/ForumsMain?id=906F000000095WAIAY

Managed to get it working as expected:

<apex:pageBlockSection >
     <apex:pageBlockSectionItem >
          <apex:outputLabel value="Help"/>
           <apex:outputLink onclick="window.open('https://c.cs6.visual.force.com/apex/InteractionSubTypeHelp','_blank','toolbar=false, scrollbars=yes, resizable=yes, top=200, left=200, width=1050, height=500'); return false;">Sub Type Definitions</apex:outputLink>
      </apex:pageBlockSectionItem>
</apex:pageBlockSection>
This was selected as the best answer