You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Sam Hough (JIRA)" <ji...@apache.org> on 2008/06/06 16:41:45 UTC

[jira] Created: (WICKET-1686) Microsoft.XMLHTTP on IE6 doesn't cope with #anchor when creating Ajax transport

Microsoft.XMLHTTP on IE6 doesn't cope with #anchor when creating Ajax transport
-------------------------------------------------------------------------------

                 Key: WICKET-1686
                 URL: https://issues.apache.org/jira/browse/WICKET-1686
             Project: Wicket
          Issue Type: Bug
          Components: wicket
    Affects Versions: 1.3.3
            Reporter: Sam Hough


Using IE6 links like http://www.wicket-library.com/wicket-examples/ajax/clock.1#rubbish will generate 404 status code from subsequent Ajax requests because the IE6 code incorrectly constructs an absolute URI by escaping #rubbish and sending as part of the URI... So the request seen by the server is "/wicket-examples/ajax/clock.1%23rubbish"

We have reproduced this using IE6 on the live examples site above (NB http://www.wicket-library.com/wicket-examples/ajax/ links don't work in IE6)

t.open("POST", '/wicket/filter/' + url, this.async); // is a quick fix for this

We hit this problem quite a lot as we use the #hash part of the URL for history support and to allow users to email each other links. It also bites if the user hits "refresh" in IE6.



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


[jira] Assigned: (WICKET-1686) Microsoft.XMLHTTP on IE6 doesn't cope with #anchor when creating Ajax transport

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

Igor Vaynberg reassigned WICKET-1686:
-------------------------------------

    Assignee: Matej Knopp

> Microsoft.XMLHTTP on IE6 doesn't cope with #anchor when creating Ajax transport
> -------------------------------------------------------------------------------
>
>                 Key: WICKET-1686
>                 URL: https://issues.apache.org/jira/browse/WICKET-1686
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket
>    Affects Versions: 1.3.3
>            Reporter: Sam Hough
>            Assignee: Matej Knopp
>
> Using IE6 links like http://www.wicket-library.com/wicket-examples/ajax/clock.1#rubbish will generate 404 status code from subsequent Ajax requests because the IE6 code incorrectly constructs an absolute URI by escaping #rubbish and sending as part of the URI... So the request seen by the server is "/wicket-examples/ajax/clock.1%23rubbish"
> We have reproduced this using IE6 on the live examples site above (NB http://www.wicket-library.com/wicket-examples/ajax/ links don't work in IE6)
> t.open("POST", '/wicket/filter/' + url, this.async); // is a quick fix for this
> We hit this problem quite a lot as we use the #hash part of the URL for history support and to allow users to email each other links. It also bites if the user hits "refresh" in IE6.

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


[jira] Resolved: (WICKET-1686) Microsoft.XMLHTTP on IE6 doesn't cope with #anchor when creating Ajax transport

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

Igor Vaynberg resolved WICKET-1686.
-----------------------------------

      Assignee: Igor Vaynberg  (was: Matej Knopp)
    Resolution: Won't Fix

dont think we will support ie6

> Microsoft.XMLHTTP on IE6 doesn't cope with #anchor when creating Ajax transport
> -------------------------------------------------------------------------------
>
>                 Key: WICKET-1686
>                 URL: https://issues.apache.org/jira/browse/WICKET-1686
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket
>    Affects Versions: 1.3.3
>            Reporter: Sam Hough
>            Assignee: Igor Vaynberg
>
> Using IE6 links like http://www.wicket-library.com/wicket-examples/ajax/clock.1#rubbish will generate 404 status code from subsequent Ajax requests because the IE6 code incorrectly constructs an absolute URI by escaping #rubbish and sending as part of the URI... So the request seen by the server is "/wicket-examples/ajax/clock.1%23rubbish"
> We have reproduced this using IE6 on the live examples site above (NB http://www.wicket-library.com/wicket-examples/ajax/ links don't work in IE6)
> t.open("POST", '/wicket/filter/' + url, this.async); // is a quick fix for this
> We hit this problem quite a lot as we use the #hash part of the URL for history support and to allow users to email each other links. It also bites if the user hits "refresh" in IE6.

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