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
LindbergOriLindbergOri 

The BOSS Shouted: What does this Popup mean?

Hey guys, i'm not very lucky today.
 
I modified a S-control page but the boss doubted the Popup Security Notification window from IE, it says
"Security Inforamation
This page contains both secure and nonsecure items.
Do you want to display the nonsecure items? "
 
Can a S-control page avoid this popup notification message from IE?
or can a S-control do the work in background mode and not to display a page to the boss?
 
I used these statements in my page
"
<script src="http://www.salesforce.com/services/lib/ajax/beta3.3/sforceclient.js" type="text/javascript"></script>
<script language="JavaScript">
function pageInit()
{
sforceClient.registerInitCallback(setupPage);
sforceClient.init("{!API_Session_ID}", "{!API_Partner_Server_URL_70}")
}
"
Does this cause the Popup Security Notification ? How to avoid this?
 
jf317820jf317820
Modify his registry to repress that message.  In our experience, this message in IE is extremely hard to work around.  On a related note, we've played around with the IE7 beta's and that warning message doesn't seem to appear for us.
 
You may also try adding your instance of salesforce (i.e. - https://na3.salesforce.com) to the trusted sites list and modify your IE settings to disable that warning message in the trusted sites zone (BUT THIS METHOD HASN'T WORKED FOR US).

Message Edited by jf317820 on 09-14-2006 10:38 AM

SuperfellSuperfell
Can't you just change the src url for the script to be https instead of http
SteveBowerSteveBower
I posted a solution to this awhile ago... others have confirmed it.

See:  http://community.salesforce.com/sforce/board/message?board.id=ajax_toolkit&message.id=389

Steve.