[thelist] XMLHTTPRequest

liorean liorean at gmail.com
Sat Oct 16 09:59:28 CDT 2004


On Sat, 16 Oct 2004 09:21:23 -0400, Khurt Williams
<khurtwilliams at gmail.com> wrote:
> I need a good source of information on using XMLHTTPRequest from
> JavaScript/ECMAScript.  I found some information on Microsoft's site
> but all the examples were for VB and .Net.

XMLHttpRequest documentation


ie6w
----
<uri:http://msdn.microsoft.com/library/default.asp?url=/library/en-us/xmlsdk/html/xmobjxmlhttprequest.asp>
<uri:http://msdn.microsoft.com/library/default.asp?url=/library/en-us/xmlsdk/html/xmobjPMEXMLHttpRequest.asp>
----
ActiveXObject("MSXML2.XMLHTTP.5.0");
ActiveXObject("MSXML2.XMLHTTP.4.0");
ActiveXObject("MSXML2.XMLHTTP.3.0");
    onreadystatechage
    readyState
    responseBody
    responseStream
    responseText
    responseXML
    status
    statusText
    abort()
    getAllResponseHeaders()
    getResponseHeader()
    open()
    send()
    setRequestHeader()
----


moz
----
<uri:http://www.mozilla.org/xmlextras/>
<uri:http://www.mozilla.org/xmlextras/tests.html>
<uri:http://lxr.mozilla.org/seamonkey/source/extensions/xmlextras/tests/>
<uri:http://unstable.elemental.com/mozilla/build/latest/mozilla/extensions/dox/interfacensIXMLHttpRequest.html>
<uri:http://unstable.elemental.com/mozilla/build/latest/mozilla/extensions/dox/interfacensIJSXMLHttpRequest.html>
----
XMLHttpRequest
    onload
    onerror
    onreadystatechange
    channel
    responseXML
    responseText
    status
    statusText
    readyState
    abort()
    getAllResponseHeaders()
    getResponseHeader()
    openRequest()
    open()
    send()
    setRequestHeader()
    overrideMimeType()
----


saf1.2
----
<uri:http://developer.apple.com/internet/webcontent/xmlhttpreq.html>
<uri:http://developer.apple.com/internet/safari/safari_faq.html#anchor19>
----
XMLHttpRequest
    onreadystatechange
    readyState
    responseText
    responseXML
    status
    statusText
    abort()
    getAllREsponseHeaders()
    getResponseHeader()
    open()
    send()
    setRequestHeader()
----
(Finding good documentation for saf is not the easiest thing... I
failed to find interface documentation for XMLHttpRequest in both
WebKit and KHTML interface documentations)


op7.6
----
Don't know of any documentation from their side, the BTS entires
always references moz or ie documentation. They have at least the
following support. (Their support is probably better than that in saf,
since saf doesn't have the features that rely on the DOMParser
interface.)
----
XMLHttpRequest
    onreadystatechange
    readyState
    responseText
    responseXML
    status
    open()
    send()
----

At least, that was what I could find out when PPK asked for it some time ago.
-- 
David "liorean" Andersson
<uri:http://liorean.web-graphics.com/>


More information about the thelist mailing list