IE is throwing an error “do you want to view only the webpage content that was delivered securrely.” On investigation, removing the doctype removes the error. There are no other calls to http content in the page.
How can I declare the doctype with a https connection or in some other way get around IE’s problem? This is my doctype statement:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
I don’t get any warnings in any other browsers, just IE.
The actual cause of this was the http:// codebase calls in the js calls to flash. i changed these to https and the warnings went away.