You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@shindig.apache.org by "Paul Lindner (JIRA)" <ji...@apache.org> on 2009/10/15 03:20:31 UTC

[jira] Created: (SHINDIG-1194) IE7 XHR requests fail when gadgets contain a tag

IE7 XHR requests fail when gadgets contain a <base href="..."> tag
------------------------------------------------------------------

                 Key: SHINDIG-1194
                 URL: https://issues.apache.org/jira/browse/SHINDIG-1194
             Project: Shindig
          Issue Type: Bug
          Components: Javascript 
    Affects Versions: 1.1-BETA3
            Reporter: Paul Lindner


XmlHttpRequest on IE7 is broken in some subtle ways.  One example is a gadget that uses it's own <base href="..."> tag.  In this case the same-source checks fail.

We should use the activex version on IE7 if available, similar to the way jquery works: 

                xhr:function(){
                        return window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
                },


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (SHINDIG-1194) IE7 XHR requests fail when gadgets contain a tag

Posted by "Paul Lindner (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SHINDIG-1194?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Paul Lindner resolved SHINDIG-1194.
-----------------------------------

       Resolution: Fixed
    Fix Version/s: 1.1-BETA4

fixed.


> IE7 XHR requests fail when gadgets contain a <base href="..."> tag
> ------------------------------------------------------------------
>
>                 Key: SHINDIG-1194
>                 URL: https://issues.apache.org/jira/browse/SHINDIG-1194
>             Project: Shindig
>          Issue Type: Bug
>          Components: Javascript 
>    Affects Versions: 1.1-BETA3
>            Reporter: Paul Lindner
>             Fix For: 1.1-BETA4
>
>
> XmlHttpRequest on IE7 is broken in some subtle ways.  One example is a gadget that uses it's own <base href="..."> tag.  In this case the same-source checks fail.
> We should use the activex version on IE7 if available, similar to the way jquery works: 
>                 xhr:function(){
>                         return window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
>                 },

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.