My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions
Issue 5: jmesaWeb limit.jsp IE support enhancement
  Back to list
Status:  Fixed
Owner:  ----
Closed:  Feb 2007


 
Reported by rain...@gmail.com, Feb 15, 2007
Add this javascript fragment to the page before the onInvokeAction function
to support Internet Explorer:

    <script type="text/javascript">

        /**
         * Make IE's XMLHTTP object accessible through XMLHttpRequest()
         */
        if (typeof XMLHttpRequest == 'undefined') {
          XMLHttpRequest = function () {
            var msxmls = ['MSXML3', 'MSXML2', 'Microsoft']
            for (var i=0; i < msxmls.length; i++) {
              try {
                return new ActiveXObject(msxmls[i]+'.XMLHTTP')
              }
              catch (e) { }
            }
            throw new Error("No XML component installed!")
          }
        }
       </script>
Feb 15, 2007
#1 extremec...@gmail.com
Thanks again! I forgot to include the sarissa.js file. I have been using the Sarissa
AJAX toolkit for the JMesa web site. I tested this on IE and it is working now. 
Status: Fixed

Powered by Google Project Hosting