Re: need help withXMLHTTPreq and parsing response
Martin Honnen <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.xml |
|---|---|
| Organization | Liberty Development |
| Message-ID | <[email protected]> |
jason pollard wrote: > I might clarify by saying I'm getting the raw text with request.responseText Its a responseText property meaning the byte stream that arrives is decoded into text. XMLHttpRequest in Mozilla does not have a responseStream or responseBody property. MSXML has those, <http://msdn.microsoft.com/library/default.asp?url=/library/en-us/xmlsdk/html/b7e71bd4-a425-4346-b2a1-2c0c12cbddde.asp> <http://msdn.microsoft.com/library/default.asp?url=/library/en-us/xmlsdk/html/387d9841-f6d4-4e62-883f-bf3819f5b918.asp> though even there it is difficult to do much with them using J(ava)Script (at least not client-side). In which context are you using XMLHttpRequest in Mozilla? Is that simply script in a HTML or XML document loaded from a HTTP web server? I don't think you can process any bytes that way. -- Martin Honnen http://JavaScript.FAQTs.com/