Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 2 of 2

Thread: IE throws SSL dialog during Phone Entry Module

  1. #1
    cloudsift is offline Junior Member
    Join Date
    Jul 2009
    Posts
    18

    Default IE throws SSL dialog during Phone Entry Module

    When going to impersonate a customer via IE with the phone entry module I am getting an SSL dialog about displaying non-secure items or not. I know I could just hit no and get on with things, but it seems like this is not the standard behavior. Firefox does not throw any type of dialog.

    This happens once I click the Use Customer button and I am guessing it has to do with the website being populated with non-secure items via an iFrame. Is this correct? Is there a way to take care of the dialog?

    I was looking at the code behind of the PhoneOrder page and wondered if I could make a modification to the following lines to force it through.

    Code:
            private void SetToImpersonationPageContext(int CustomerID, String PageName, bool UseEmptyTemplate)
            {
               
                String Url = "https://<storeUrl>" + PageName + CommonLogic.IIF(PageName.IndexOf("?") == -1, "?", "&") + "IGD=" + IGD.ToString();
                SetFramePage("ImpersonationFrame", Url);
            }

  2. #2
    Jao is offline Senior Member
    Join Date
    Oct 2008
    Posts
    1,132

    Default

    Or, use the AppLogic.GetStoreHTTPLocation(boolean) set its value to true to use the secure line; otherwise, set it to false...