OK, I can now use Ajax to return what I think is a well formed XML
document.  However, the request.responseXML property is blank.  I CAN
find the XML document in response.responseText.  Any ideas as to why
request.responseXML is blank?

Here is the code that creates the XML:

<cfoutput>
<cfxml variable="xmlobject" casesensitive="yes">
            <totals>
             <boards-sold>#boardsSold#</boards-sold>
             <boots-sold>#bootsSold#</boots-sold>
             <bindings-sold>#bindingsSold#</bindings-sold>
            </totals>
</cfxml>
</cfoutput>

<cfcontent type="text/xml"><cfoutput>#toString(xmlobject)#</cfoutput>

And here are the contents of request.responseText as returned by the
server:

<?xml version="1.0" encoding="UTF-8"?>
            <totals>
             <boards-sold>314</boards-sold>
             <boots-sold>1675</boots-sold>
             <bindings-sold>83</bindings-sold>
            </totals>

Again, when I try to display request.responseXML via an "alert( )", I
get "request.responseXML is "



Thanks again.
----------------------------------------------------------------------
Ed Szwedo

Web Development Team Lead
CSC
E-mail: [EMAIL PROTECTED]
919-541-3955  (Voice)
919-541-3719  (Fax)



-------------------------------------------------------------
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-------------------------------------------------------------



Reply via email to