I've have a web application that pushes data to a browser based client
via a persistent connection established with an XmlHttpRequest.  The
content type of the initial response is set to

Content-type: multipart/x-mixed-replace;boundary=UniqueString

I am setting the boundary string of my multipart responses to

--UniqueString

and the last part in my multipart response is terminated by

--UniqueString--

I also include carriage return (\r) and line-feed (\n) characters at
the end of each boundary string.

This works fine in Firefox 3.x but not in Chrome 2.0.172.28

Specifically,  the onload( ) method of my XMLHttpRequest object is not
being called in response to the arrival of a new part in my multipart
response stream.

I see that

 Issue 5786:     Streaming jpeg (multipart/x-mixed-replace) does not
play

and

Revision 7364

have to do with incorrectly including the "--" in the specification of
the boundary string but that is not the case here.

I suspect strongly that this has to do with the recognition of the
part boundaries of the multipart response.

Any insights/suggestions would be appreciated.
--~--~---------~--~----~------------~-------~--~----~
Chromium Discussion mailing list: [email protected] 
View archives, change email options, or unsubscribe: 
    http://groups.google.com/group/chromium-discuss
-~----------~----~----~----~------~----~------~--~---

Reply via email to