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 2010/07/19 07:22:50 UTC

[jira] Resolved: (SHINDIG-1356) Remove leading characters in XHR callback processing which may be inserted if apache has transfer-encoding: chunked

     [ https://issues.apache.org/jira/browse/SHINDIG-1356?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Paul Lindner resolved SHINDIG-1356.
-----------------------------------

    Fix Version/s: 2.0.0-RC1
       Resolution: Fixed

resolved.


> Remove leading characters in XHR callback processing which may be inserted if apache has transfer-encoding: chunked
> -------------------------------------------------------------------------------------------------------------------
>
>                 Key: SHINDIG-1356
>                 URL: https://issues.apache.org/jira/browse/SHINDIG-1356
>             Project: Shindig
>          Issue Type: Bug
>          Components: Javascript 
>            Reporter: Bastian Hofmann
>            Priority: Minor
>             Fix For: 2.0.0-RC1
>
>
> When running on Apache with transfer-encoding: chunked there may be some line breaks \n before the message. The following fix filters these out:
> Index: features/src/main/javascript/features/core.io/io.js
> ===================================================================
> --- features/src/main/javascript/features/core.io/io.js (Revision 952257)
> +++ features/src/main/javascript/features/core.io/io.js (Arbeitskopie)
> @@ -132,6 +132,9 @@
>        return;
>      }
>      var txt = xobj.responseText;
> +    // remove any leading characters like \n
> +    // this happens if apache has transfer-encoding: chunked
> +    txt = txt.substr(txt.indexOf(UNPARSEABLE_CRUFT))
>      // remove unparseable cruft used to prevent cross-site script inclusion
>      txt = txt.substr(UNPARSEABLE_CRUFT.length);
>      // We are using eval directly here because the outer response comes from a

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