I'm very new to xml. This some xml generated by saving an ADO recordset to xml in a client side script. I need to parse it for display on another page, and I having a hard time with the MSXML DOM object. Does anyone have any examples that might illustrate how to get at this.
<xml xmlns:s='uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882'
xmlns:dt='uuid:C2F41010-65B3-11d1-A29F-00AA00C14882'
xmlns:rs='urn:schemas-microsoft-com:rowset'
xmlns:z='#RowsetSchema'>
<s:Schema id='RowsetSchema'>
<s:ElementType name='row content='eltOnly'
rs:CommandTimeout='60' rs:updatable='true'> <s:AttributeType name='ColName' rs:number='1'
rs:nullable='true' rs:writeunknown='true'> <s:datatype dt:type='string'
dt:maxLength='100'/>
</s:AttributeType>
<s:AttributeType name='FriendlyName' rs:number='2'
rs:nullable='true' rs:writeunknown='true'> <s:datatype dt:type='string'
dt:maxLength='100'/>
</s:AttributeType>
<s:AttributeType name='Aggregate' rs:number='3'
rs:nullable='true' rs:writeunknown='true'>
<s:datatype dt:type='boolean'
dt:maxLength='2' rs:fixedlength='true'/> </s:AttributeType>
<s:extends type='rs:rowbase'/>
</s:ElementType>
</s:Schema>
<rs:data>
<z:row ColName='accountnumber' FriendlyName='Acc
Number' Aggregate='False'/>
<z:row ColName='acc_id' FriendlyName='Account Id'
Aggregate='False'/>
<z:row ColName='type' FriendlyName='Account Type'
Aggregate='False'/>
<z:row ColName='accountvalue' FriendlyName='Account
Value' Aggregate='True'/>
<z:row ColName='branchid' FriendlyName='Branch Id'
Aggregate='False'/>
</rs:data>
</xml>
<xml xmlns:s='uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882'
xmlns:dt='uuid:C2F41010-65B3-11d1-A29F-00AA00C14882'
xmlns:rs='urn:schemas-microsoft-com:rowset'
xmlns:z='#RowsetSchema'>
<s:Schema id='RowsetSchema'>
<s:ElementType name='row content='eltOnly'
rs:CommandTimeout='60' rs:updatable='true'> <s:AttributeType name='ColName' rs:number='1'
rs:nullable='true' rs:writeunknown='true'> <s:datatype dt:type='string'
dt:maxLength='100'/>
</s:AttributeType>
<s:AttributeType name='FriendlyName' rs:number='2'
rs:nullable='true' rs:writeunknown='true'> <s:datatype dt:type='string'
dt:maxLength='100'/>
</s:AttributeType>
<s:AttributeType name='Aggregate' rs:number='3'
rs:nullable='true' rs:writeunknown='true'>
<s:datatype dt:type='boolean'
dt:maxLength='2' rs:fixedlength='true'/> </s:AttributeType>
<s:extends type='rs:rowbase'/>
</s:ElementType>
</s:Schema>
<rs:data>
<z:row ColName='accountnumber' FriendlyName='Acc
Number' Aggregate='False'/>
<z:row ColName='acc_id' FriendlyName='Account Id'
Aggregate='False'/>
<z:row ColName='type' FriendlyName='Account Type'
Aggregate='False'/>
<z:row ColName='accountvalue' FriendlyName='Account
Value' Aggregate='True'/>
<z:row ColName='branchid' FriendlyName='Branch Id'
Aggregate='False'/>
</rs:data>
</xml>