1 Reply Latest reply on Oct 10, 2012 11:20 AM by mirec.zatko

    No such interface supported 3_3_1.GAorg.ajax4jsf.javascript.AjaxScript.seam

    mcas.uvaraj

      Hi all ,

                I was stuck in Past few days to find the solution for IE 9 "No such interface supported 3_3_1.GAorg.ajax4jsf.javascript.AjaxScript.seam" Error at Line 120 Char 1.

       

              I am using the Richfaces 3.3.1 . My application working fine in IE 8 and in all the Other Browser . But in IE9 i am getting the Script Error Like the Above . Please help me to fix this . Thanks in advance. Here with i attached the screen shot regarding the Error.

        • 1. Re: No such interface supported 3_3_1.GAorg.ajax4jsf.javascript.AjaxScript.seam
          mirec.zatko

          Had same error and was not able to fix it until now.

          You need to override XMLSerializer.serializeToString(node) function after whole page is loaded.

          Something like this:

           

          jQuery(document).ready(function(){

             XMLSerializer.prototype.serializeToString=function(oNode)

             {

                if(oNode.xml)

                {

                   return oNode.xml;

                }

                else if(oNode.outerHTML)

                {

                   return oNode.outerHTML;

                }

                return oNode;

             }

          }

           

          It works for IE9,FF16,Opera12,Chrome22,Safari4Win5.1.7