Search code examples
ajaxlotus-noteslotus-domino

iNotes on any version of Internet Explorer is emulating IE9


I am customizing iNotes (Notes web mail client), adding some features using javascript that require ajax calls to external sources. In doing so I have found Internet Explorer won't perform CORS (cross-origin) requests. Errors are either access denied or some other security errors depending on how it's called. Chrome and FF and Safari all work.

I have found what I believe to be the culprit, iNotes adds a meta-tag to emulate IE9.

<META http-equiv="X-UA-Compatible" content="IE=EmulateIE9" /> 

For CORS requests, IE9 does not support XMLHttpRequest, rather you must use XDomainRequest, which was only supported in IE8 and IE9. Since it's emulating IE9, the XMLHttpRequest (or jQuery .ajax calls for that matter) don't work.

I have not been able to find any way to remove that meta tag, I did a search on the mail file and there are no matches for IE=EmulateIE9 that I could find. And I'm sure if I did remove it, I would break something in iNotes.

I didn't want to load jQuery, but may do so for this script and include the moonscript plugin which uses XDR for ie8 and ie9 browsers. If iNotes is ever updated, it will still work.

Anyone else run into this problem and find a better solution?


Solution

  • Lothar Mueller pointed me in the right direction.

    Domino 9.0.1 Fix Pack 5 adds a Forms9s.nsf which allows you to get rid of "Quirks Mode" for IE backwards compatibility. After installing the FP, the new forms9s.nsf file is installed, then you update the notes.ini with

    iNotes_WA_DefaultFormsFile=iNotes/Forms9s.nsf
    iNotes_WA_FormsFiles=iNotes/Forms9s.nsf
    

    and it eliminates the emulation tag for IE. I still have to test my iNotes customization apps, but this gives an option for running some IE features that didn't work before such as Ajax requests from iNotesExt_9.nsf, etc.